improved hostname()

This commit is contained in:
Ali H. Fardan 2016-09-14 12:22:03 +03:00
parent 6edc959933
commit 56fffbce64
1 changed files with 1 additions and 3 deletions

View File

@ -272,9 +272,7 @@ hostname(void)
}
fgets(hostname, sizeof(hostname), fp);
/* FIXME: needs improvement */
memset(&hostname[strlen(hostname)-1], '\0',
sizeof(hostname) - strlen(hostname));
hostname[strlen(hostname)-1] = '\0';
fclose(fp);
return smprintf("%s", hostname);