diff options
author | corvid <corvid@lavabit.com> | 2010-01-14 17:25:56 +0000 |
---|---|---|
committer | corvid <corvid@lavabit.com> | 2010-01-14 17:25:56 +0000 |
commit | 0aa2466e6616b3679476602775122134bf2e2bd9 (patch) | |
tree | 01783978d289eb89c4ce1c25b5af302dad6a41a1 /src/cookies.c | |
parent | 350cdd8e33a459ec372d25e216c49f06bad6f77c (diff) |
fix DISABLE_COOKIES (reported by furaisanjin)
Diffstat (limited to 'src/cookies.c')
-rw-r--r-- | src/cookies.c | 8 |
1 files changed, 3 insertions, 5 deletions
diff --git a/src/cookies.c b/src/cookies.c index ceb5b238..ea386be5 100644 --- a/src/cookies.c +++ b/src/cookies.c @@ -10,10 +10,9 @@ * (at your option) any later version. */ -/* Handling of cookies takes place here. - * This implementation aims to follow RFC 2965: - * http://www.ietf.org/rfc/rfc2965.txt - */ +/* Handling of cookies takes place here. */ + +#include "msg.h" #ifdef DISABLE_COOKIES @@ -37,7 +36,6 @@ void a_Cookies_init(void) #include <ctype.h> #include <errno.h> -#include "msg.h" #include "IO/Url.h" #include "list.h" #include "cookies.h" |