aboutsummaryrefslogtreecommitdiff
path: root/networking/hostname.c
diff options
context:
space:
mode:
Diffstat (limited to 'networking/hostname.c')
-rw-r--r--networking/hostname.c9
1 files changed, 5 insertions, 4 deletions
diff --git a/networking/hostname.c b/networking/hostname.c
index 50ef7b5d1..862bbdfa2 100644
--- a/networking/hostname.c
+++ b/networking/hostname.c
@@ -29,12 +29,13 @@ static void do_sethostname(char *s, int isfile)
29 } 29 }
30 } else { 30 } else {
31 f = xfopen(s, "r"); 31 f = xfopen(s, "r");
32 while (fgets(bb_common_bufsiz1, sizeof(bb_common_bufsiz1), f) != NULL) { 32#define strbuf bb_common_bufsiz1
33 if (bb_common_bufsiz1[0] == '#') { 33 while (fgets(strbuf, sizeof(strbuf), f) != NULL) {
34 if (strbuf[0] == '#') {
34 continue; 35 continue;
35 } 36 }
36 chomp(bb_common_bufsiz1); 37 chomp(strbuf);
37 do_sethostname(bb_common_bufsiz1, 0); 38 do_sethostname(strbuf, 0);
38 } 39 }
39 if (ENABLE_FEATURE_CLEAN_UP) 40 if (ENABLE_FEATURE_CLEAN_UP)
40 fclose(f); 41 fclose(f);