diff options
author | Denys Vlasenko | 2011-02-03 00:05:48 +0100 |
---|---|---|
committer | Denys Vlasenko | 2011-02-03 00:05:48 +0100 |
commit | b7c9fb27cba3d697e602f8cbf88cde135d8d6c5e (patch) | |
tree | b30b48c8a78e0ee4ed639a398e8778e5e3f50a04 /networking | |
parent | 6307357effb79c8fbc6ccc9d4528c8c1c48a4831 (diff) | |
download | busybox-b7c9fb27cba3d697e602f8cbf88cde135d8d6c5e.zip busybox-b7c9fb27cba3d697e602f8cbf88cde135d8d6c5e.tar.gz |
whitespace fixes
Signed-off-by: Denys Vlasenko <vda.linux@googlemail.com>
Diffstat (limited to 'networking')
-rw-r--r-- | networking/httpd_ssi.c | 4 | ||||
-rw-r--r-- | networking/ntpd.c | 2 |
2 files changed, 3 insertions, 3 deletions
diff --git a/networking/httpd_ssi.c b/networking/httpd_ssi.c index 87f43fc..cfe64eb 100644 --- a/networking/httpd_ssi.c +++ b/networking/httpd_ssi.c @@ -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]; diff --git a/networking/ntpd.c b/networking/ntpd.c index 8fe529e..3ed05ba 100644 --- a/networking/ntpd.c +++ b/networking/ntpd.c @@ -882,7 +882,7 @@ fit(peer_t *p, double rd) // /* Do we have a loop? */ // if (p->refid == p->dstaddr || p->refid == s.refid) // return 0; - return 1; + return 1; } static peer_t* select_and_cluster(void) |