diff options
author | Adam Chlipala <adamc@hcoop.net> | 2010-01-28 13:32:26 -0500 |
---|---|---|
committer | Adam Chlipala <adamc@hcoop.net> | 2010-01-28 13:32:26 -0500 |
commit | cd705bdc5bb77787ffe3aba6788e361ededc424f (patch) | |
tree | 57ac3fd1704bcdc98acf576d907d19c473bade0e /src/c/http.c | |
parent | 4a4e8f051883b59d8c64aa01ccf8befb66139c89 (diff) |
Switch to gcc -Wall
Diffstat (limited to 'src/c/http.c')
-rw-r--r-- | src/c/http.c | 13 |
1 files changed, 6 insertions, 7 deletions
diff --git a/src/c/http.c b/src/c/http.c index 3ba00a6d..7a8110dc 100644 --- a/src/c/http.c +++ b/src/c/http.c @@ -25,7 +25,7 @@ static char *get_header(void *data, const char *h) { int len = strlen(h); char *p; - while (p = strchr(s, ':')) { + while ((p = strchr(s, ':'))) { if (p - s == len && !strncasecmp(s, h, len)) { return p + 2; } else { @@ -169,10 +169,10 @@ static void *worker(void *data) { } path = s; - if (s = strchr(path, ' ')) + if ((s = strchr(path, ' '))) *s = 0; - if (s = strchr(path, '?')) { + if ((s = strchr(path, '?'))) { *s = 0; query_string = s+1; } @@ -180,7 +180,7 @@ static void *worker(void *data) { query_string = NULL; s = headers; - while (s2 = strchr(s, '\r')) { + while ((s2 = strchr(s, '\r'))) { s = s2; if (s[1] == 0) @@ -228,8 +228,8 @@ int main(int argc, char *argv[]) { int sockfd; // listen on sock_fd struct sockaddr_in my_addr; struct sockaddr_in their_addr; // connector's address information - int sin_size, yes = 1; - int uw_port = 8080, nthreads = 1, i, *names, opt; + socklen_t sin_size; + int yes = 1, uw_port = 8080, nthreads = 1, i, *names, opt; signal(SIGINT, sigint); signal(SIGPIPE, SIG_IGN); @@ -306,7 +306,6 @@ int main(int argc, char *argv[]) { { pthread_t thread; - int name; if (pthread_create(&thread, NULL, client_pruner, &ls)) { fprintf(stderr, "Error creating pruner thread\n"); |