hush: fix a bug in argv restoration after sourcing a file
[oweals/busybox.git] / networking / httpd_ssi.c
index 03f26339737691157db43f7cead8d829aff597f0..4bd9a6d97dfab58b3453f80da6fd898c82d4148a 100644 (file)
@@ -1,7 +1,7 @@
 /*
  * Copyright (c) 2009 Denys Vlasenko <vda.linux@googlemail.com>
  *
- * 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);
                }