diff options
author | Pascal Rigaux <pixel@mandriva.com> | 2004-11-02 13:58:50 +0000 |
---|---|---|
committer | Pascal Rigaux <pixel@mandriva.com> | 2004-11-02 13:58:50 +0000 |
commit | 3a41cb2f157cfd970fe2d4708d5eeb3409a8592f (patch) | |
tree | 27cc9987058897398f13ce79021c24f2f9a2752a | |
parent | 888ce1469c4414cb743e22123776b3796a03cd88 (diff) | |
download | drakx-3a41cb2f157cfd970fe2d4708d5eeb3409a8592f.tar drakx-3a41cb2f157cfd970fe2d4708d5eeb3409a8592f.tar.gz drakx-3a41cb2f157cfd970fe2d4708d5eeb3409a8592f.tar.bz2 drakx-3a41cb2f157cfd970fe2d4708d5eeb3409a8592f.tar.xz drakx-3a41cb2f157cfd970fe2d4708d5eeb3409a8592f.zip |
normalize code
-rw-r--r-- | mdk-stage1/network.c | 9 |
1 files changed, 6 insertions, 3 deletions
diff --git a/mdk-stage1/network.c b/mdk-stage1/network.c index 5ce055c8a..19d6d3710 100644 --- a/mdk-stage1/network.c +++ b/mdk-stage1/network.c @@ -240,7 +240,8 @@ static int add_default_route(void) } -static int write_resolvconf(void) { +static int write_resolvconf(void) +{ char * filename = "/etc/resolv.conf"; FILE * f; @@ -268,7 +269,8 @@ static int write_resolvconf(void) { } -static int save_netinfo(struct interface_info * intf) { +static int save_netinfo(struct interface_info * intf) +{ char * file_network = "/tmp/network"; char file_intf[500]; FILE * f; @@ -348,7 +350,8 @@ char * guess_netmask(char * ip_addr) } -char * guess_domain_from_hostname(char *hostname) { +char * guess_domain_from_hostname(char *hostname) +{ char *domain = strchr(strdup(hostname), '.'); if (!domain || domain[1] == '\0') { log_message("unable to guess domain from hostname: %s", hostname); |