Browse Source

hostname: use POSIX routine to get hostname rather than reading from procfs

master
Ali H. Fardan 7 years ago
parent
commit
4339c8330a
1 changed files with 2 additions and 6 deletions
  1. +2
    -6
      slstatus.c

+ 2
- 6
slstatus.c View File

@@ -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);
}


Loading…
Cancel
Save