diff options
author | Nick Mathewson <nickm@torproject.org> | 2013-09-03 13:39:31 -0400 |
---|---|---|
committer | Nick Mathewson <nickm@torproject.org> | 2013-09-03 13:39:31 -0400 |
commit | 5c9008e0b077e79297a5245573675d95a1f266cc (patch) | |
tree | 8615c2b113493991d00beb0e3e95951ecd751720 /src/or/directory.c | |
parent | 37534880113133716b220bf6d5ffaaf910072b30 (diff) | |
download | tor-5c9008e0b077e79297a5245573675d95a1f266cc.tar.gz tor-5c9008e0b077e79297a5245573675d95a1f266cc.zip |
Fix some "ISO C90 forbids mixed declarations and code" warnings
Diffstat (limited to 'src/or/directory.c')
-rw-r--r-- | src/or/directory.c | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/src/or/directory.c b/src/or/directory.c index 099df50d07..815e0abffd 100644 --- a/src/or/directory.c +++ b/src/or/directory.c @@ -1418,10 +1418,10 @@ parse_http_url(const char *headers, char **url) /* Check if the header is well formed (next sequence * should be HTTP/1.X\r\n). Assumes we're supporting 1.0? */ - char *e = (char *)eat_whitespace_no_nl(s); { unsigned minor_ver; char ch; + char *e = (char *)eat_whitespace_no_nl(s); if (2 != tor_sscanf(e, "HTTP/1.%u%c", &minor_ver, &ch)) { return -1; } |