diff options
author | Thomas Roessler <roessler@does-not-exist.org> | 2000-07-03 10:16:10 +0000 |
---|---|---|
committer | Thomas Roessler <roessler@does-not-exist.org> | 2000-07-03 10:16:10 +0000 |
commit | 368c0e3fc13d42e94d8b595fa7b72013bf00cff0 (patch) | |
tree | d279a257e4e6997e0c8c0f4e5c81063dae97e723 /imap/command.c | |
parent | faab425d97a5ac1f39b48d6b1dfea1cfaa9e7d9a (diff) |
IMAP logout patch from Brendan Cully.
Diffstat (limited to 'imap/command.c')
-rw-r--r-- | imap/command.c | 6 |
1 files changed, 3 insertions, 3 deletions
diff --git a/imap/command.c b/imap/command.c index d95bcd7b..cfa7deba 100644 --- a/imap/command.c +++ b/imap/command.c @@ -1,7 +1,7 @@ /* * Copyright (C) 1996-8 Michael R. Elkins <me@cs.hmc.edu> * Copyright (C) 1996-9 Brandon Long <blong@fiction.net> - * Copyright (C) 1999 Brendan Cully <brendan@kublai.com> + * Copyright (C) 1999-2000 Brendan Cully <brendan@kublai.com> * * This program is free software; you can redistribute it and/or modify * it under the terms of the GNU General Public License as published by @@ -111,7 +111,7 @@ int imap_exec (char* buf, size_t buflen, IMAP_DATA* idata, const char* cmd, { char* out; int outlen; - char seq[8]; + char seq[SEQLEN+1]; /* create sequence for command */ imap_make_sequence (seq, sizeof (seq)); @@ -154,7 +154,7 @@ int imap_exec (char* buf, size_t buflen, IMAP_DATA* idata, const char* cmd, return 0; } -/* imap_handle_untagged: fallback parser for otherwise unhandled messages */ +/* imap_handle_untagged: fallback parser for otherwise unhandled messages. */ int imap_handle_untagged (IMAP_DATA *idata, char *s) { char *pn; |