diff options
author | Daniel Stenberg <daniel@haxx.se> | 2011-03-13 14:19:16 +0100 |
---|---|---|
committer | Daniel Stenberg <daniel@haxx.se> | 2011-03-13 14:19:16 +0100 |
commit | 60406ff7f87c950be8eee96760f9358547594bc6 (patch) | |
tree | a8704126de751fd428c398ad721d0d926b1f862e /lib/imap.c | |
parent | 6c5448d59f6b156d366aea71309f50ab37fd0a38 (diff) | |
download | curl-60406ff7f87c950be8eee96760f9358547594bc6.tar.gz |
state: add missing state to debug table
As a new state recently was added to the IMAP state machine it has to be
in the array of names as well as otherwise libcurl crashes when a debug
version runs...
Diffstat (limited to 'lib/imap.c')
-rw-r--r-- | lib/imap.c | 3 |
1 files changed, 2 insertions, 1 deletions
diff --git a/lib/imap.c b/lib/imap.c index 16410c7d5..113907a97 100644 --- a/lib/imap.c +++ b/lib/imap.c @@ -5,7 +5,7 @@ * | (__| |_| | _ <| |___ * \___|\___/|_| \_\_____| * - * Copyright (C) 1998 - 2010, Daniel Stenberg, <daniel@haxx.se>, et al. + * Copyright (C) 1998 - 2011, Daniel Stenberg, <daniel@haxx.se>, et al. * * This software is licensed as described in the file COPYING, which * you should have received as part of this distribution. The terms @@ -294,6 +294,7 @@ static void state(struct connectdata *conn, "SERVERGREET", "LOGIN", "STARTTLS", + "UPGRADETLS", "SELECT", "FETCH", "LOGOUT", |