diff options
author | Eric S. Raymond <esr@thyrsus.com> | 1998-02-17 09:42:09 +0000 |
---|---|---|
committer | Eric S. Raymond <esr@thyrsus.com> | 1998-02-17 09:42:09 +0000 |
commit | 864f64246853e7732e506b4c518ff50650696e68 (patch) | |
tree | db6eb735e2a39243383d70265f2235d8a593ea04 /imap.c | |
parent | e15bf53e9d53607d805770c5c4c3a0d1bba64f5f (diff) | |
download | fetchmail-864f64246853e7732e506b4c518ff50650696e68.tar.gz fetchmail-864f64246853e7732e506b4c518ff50650696e68.tar.bz2 fetchmail-864f64246853e7732e506b4c518ff50650696e68.zip |
*** empty log message ***
svn path=/trunk/; revision=1641
Diffstat (limited to 'imap.c')
-rw-r--r-- | imap.c | 2 |
1 files changed, 1 insertions, 1 deletions
@@ -56,7 +56,7 @@ int imap_ok(int sock, char *argbuf) return(ok); /* interpret untagged status responses */ - if (strstr(buf, "CAPABILITIES")) + if (strstr(buf, "CAPABILITY")) strncpy(capabilities, buf + 12, sizeof(capabilities)); if (strstr(buf, "EXISTS")) count = atoi(buf+2); |