summaryrefslogtreecommitdiffstats
path: root/imap
diff options
context:
space:
mode:
authorThomas Roessler <roessler@does-not-exist.org>2001-06-05 08:13:43 +0000
committerThomas Roessler <roessler@does-not-exist.org>2001-06-05 08:13:43 +0000
commit7a3cac220d616e7fc650b1c48aa222976a25c217 (patch)
tree96c3f8144c154c2df0369331b95ecaa3df8d8a30 /imap
parentd43cbd140463dea549f33fae5792943b5964a018 (diff)
Change the delimiter for imap_authenticators to a colon.
Diffstat (limited to 'imap')
-rw-r--r--imap/auth.c4
1 files changed, 2 insertions, 2 deletions
diff --git a/imap/auth.c b/imap/auth.c
index c7037a3a..1ce73e35 100644
--- a/imap/auth.c
+++ b/imap/auth.c
@@ -48,7 +48,7 @@ int imap_authenticate (IMAP_DATA* idata)
{
imap_auth_t* authenticator;
char* methods;
- char* comma;
+ char* comma; /* should be colon ;-) */
char* method;
int r = -1;
@@ -60,7 +60,7 @@ int imap_authenticate (IMAP_DATA* idata)
while (method)
{
- comma = strchr (method, ',');
+ comma = strchr (method, ':');
if (comma)
*comma++ = '\0';
dprint (2, (debugfile, "imap_authenticate: Trying method %s\n", method));