summaryrefslogtreecommitdiff
path: root/slstatus.c
diff options
context:
space:
mode:
authorAli H. Fardan <raiz@firemail.cc>2016-10-08 19:55:25 +0300
committerAli H. Fardan <raiz@firemail.cc>2016-10-08 19:55:25 +0300
commit4339c8330a3a9ac2a4000201a286cdda3808b4f6 (patch)
tree7682621299bd9d35dea516882208b1b36487b629 /slstatus.c
parentfb440d8f622142c11e98e4799b7adceb33cd23b0 (diff)
hostname: use POSIX routine to get hostname rather than reading from procfs
Diffstat (limited to 'slstatus.c')
-rw-r--r--slstatus.c8
1 files changed, 2 insertions, 6 deletions
diff --git a/slstatus.c b/slstatus.c
index ba7f95a..6417305 100644
--- a/slstatus.c
+++ b/slstatus.c
@@ -271,14 +271,10 @@ hostname(void)
char buf[HOST_NAME_MAX];
FILE *fp;
- fp = fopen("/proc/sys/kernel/hostname", "r");
- if (fp == NULL) {
- warn("Failed to open file /proc/sys/kernel/hostname");
+ if (gethostname(buf, sizeof(buf)) == -1) {
+ warn(1, "hostname");
return smprintf(UNKNOWN_STR);
}
- fgets(buf, sizeof(buf), fp);
- buf[strlen(buf)-1] = '\0';
- fclose(fp);
return smprintf("%s", buf);
}