X-Git-Url: https://git.librecmc.org/?a=blobdiff_plain;f=networking%2Fhttpd_ssi.c;h=4bd9a6d97dfab58b3453f80da6fd898c82d4148a;hb=2b1559056cf32c42675ecd937796e1455bcb5c2c;hp=03f26339737691157db43f7cead8d829aff597f0;hpb=772c2db9716f2aa255a5316b3435899b00483dde;p=oweals%2Fbusybox.git diff --git a/networking/httpd_ssi.c b/networking/httpd_ssi.c index 03f263397..4bd9a6d97 100644 --- a/networking/httpd_ssi.c +++ b/networking/httpd_ssi.c @@ -1,7 +1,7 @@ /* * Copyright (c) 2009 Denys Vlasenko * - * Licensed under GPLv2, see file LICENSE in this tarball for details. + * Licensed under GPLv2, see file LICENSE in this source tree. */ /* @@ -52,9 +52,9 @@ httpd_ssi.c -o httpd_ssi static char* skip_whitespace(char *s) { - while (*s == ' ' || *s == '\t') ++s; + while (*s == ' ' || *s == '\t') ++s; - return s; + return s; } static char line[64 * 1024]; @@ -133,7 +133,7 @@ static void process_includes(const char *filename) process_includes(include_directive); /* Print everything after directive */ - if (end) { + if (end) { fputs(end, stdout); free(end); }