diff options
| author | Eric S. Raymond <esr@thyrsus.com> | 2001-06-23 14:50:12 +0000 |
|---|---|---|
| committer | Eric S. Raymond <esr@thyrsus.com> | 2001-06-23 14:50:12 +0000 |
| commit | 75b1a90747d6fa2d0d2962856c2875b92ebcfe7b (patch) | |
| tree | 7431f59f25204ad0d0d672dcd68466d2ef30631c /imap.c | |
| parent | c55e6971c9006e85f25e9ef758b8980d8920e149 (diff) | |
| download | fetchmail-75b1a90747d6fa2d0d2962856c2875b92ebcfe7b.tar.gz fetchmail-75b1a90747d6fa2d0d2962856c2875b92ebcfe7b.tar.bz2 fetchmail-75b1a90747d6fa2d0d2962856c2875b92ebcfe7b.zip | |
strncat/snprintf cleanup.
svn path=/trunk/; revision=3366
Diffstat (limited to 'imap.c')
| -rw-r--r-- | imap.c | 3 |
1 files changed, 2 insertions, 1 deletions
@@ -376,7 +376,7 @@ static int imap_getauth(int sock, struct query *ctl, char *greeting) #ifdef NTLM_ENABLE if ((ctl->server.authenticate == A_ANY || ctl->server.authenticate == A_NTLM) - && strstr (capabilities, "AUTH=NTLM")) + && strstr (capabilities, "AUTH=NTLM")) { if ((ok = do_imap_ntlm(sock, ctl))) { /* SASL cancellation of authentication */ @@ -386,6 +386,7 @@ static int imap_getauth(int sock, struct query *ctl, char *greeting) } else return(ok); + } #else if (ctl->server.authenticate == A_NTLM) { |
