From 250ad2ad7e6555911c266611fb49460c5354c377 Mon Sep 17 00:00:00 2001 From: Luigi Rizzo Date: Mon, 16 Oct 2006 06:55:14 +0000 Subject: [PATCH] fix indentation of a large block after changes in previous commit (basically whitespace only). git-svn-id: https://origsvn.digium.com/svn/asterisk/trunk@45161 65c4cc65-6c06-0410-ace0-fbb531ad65f3 --- main/http.c | 76 ++++++++++++++++++++++++++--------------------------- 1 file changed, 38 insertions(+), 38 deletions(-) diff --git a/main/http.c b/main/http.c index 3e30ee652e..8e728ac324 100644 --- a/main/http.c +++ b/main/http.c @@ -385,51 +385,51 @@ static void *ast_httpd_helper_thread(void *data) /* XXX fix indentation */ - /* TODO - The cookie parsing code below seems to work - in IE6 and FireFox 1.5. However, it is not entirely - correct, and therefore may not work in all - circumstances. - For more details see RFC 2109 and RFC 2965 */ + /* TODO - The cookie parsing code below seems to work + in IE6 and FireFox 1.5. However, it is not entirely + correct, and therefore may not work in all + circumstances. + For more details see RFC 2109 and RFC 2965 */ + + /* FireFox cookie strings look like: + Cookie: mansession_id="********" + InternetExplorer's look like: + Cookie: $Version="1"; mansession_id="********" */ - /* FireFox cookie strings look like: - Cookie: mansession_id="********" - InternetExplorer's look like: - Cookie: $Version="1"; mansession_id="********" */ + /* If we got a FireFox cookie string, the name's right + after "Cookie: " */ + vname = cookie + 8; - /* If we got a FireFox cookie string, the name's right - after "Cookie: " */ - vname = cookie + 8; - - /* If we got an IE cookie string, we need to skip to - past the version to get to the name */ - if (*vname == '$') { - vname = strchr(vname, ';'); - if (vname) { + /* If we got an IE cookie string, we need to skip to + past the version to get to the name */ + if (*vname == '$') { + vname = strchr(vname, ';'); + if (vname) { + vname++; + if (*vname == ' ') vname++; - if (*vname == ' ') - vname++; - } } + } - if (vname) { - vval = strchr(vname, '='); - if (vval) { - /* Ditch the = and the quotes */ - *vval++ = '\0'; - if (*vval) - vval++; - if (strlen(vval)) - vval[strlen(vval) - 1] = '\0'; - var = ast_variable_new(vname, vval); - if (var) { - if (prev) - prev->next = var; - else - vars = var; - prev = var; - } + if (vname) { + vval = strchr(vname, '='); + if (vval) { + /* Ditch the = and the quotes */ + *vval++ = '\0'; + if (*vval) + vval++; + if (strlen(vval)) + vval[strlen(vval) - 1] = '\0'; + var = ast_variable_new(vname, vval); + if (var) { + if (prev) + prev->next = var; + else + vars = var; + prev = var; } } + } } if (*uri) {