diff options
| author | Thomas Ulmer <thomasmulmer02@gmail.com> | 2025-12-08 11:10:35 -0800 |
|---|---|---|
| committer | Thomas Ulmer <thomasmulmer02@gmail.com> | 2025-12-08 11:10:35 -0800 |
| commit | a82a073043c1475b46e1e6963c7078df24399745 (patch) | |
| tree | af903573e80c41401fd73e7a3b15b003b56aa7bc /slstatus/slstatus-1.1/components/hostname.c | |
| parent | 78f1d733b5a24bba9cd36c0fde335e14407d12f7 (diff) | |
slstatus patch to git
Diffstat (limited to 'slstatus/slstatus-1.1/components/hostname.c')
| -rw-r--r-- | slstatus/slstatus-1.1/components/hostname.c | 17 |
1 files changed, 17 insertions, 0 deletions
diff --git a/slstatus/slstatus-1.1/components/hostname.c b/slstatus/slstatus-1.1/components/hostname.c new file mode 100644 index 0000000..dab8b63 --- /dev/null +++ b/slstatus/slstatus-1.1/components/hostname.c @@ -0,0 +1,17 @@ +/* See LICENSE file for copyright and license details. */ +#include <stdio.h> +#include <unistd.h> + +#include "../slstatus.h" +#include "../util.h" + +const char * +hostname(const char *unused) +{ + if (gethostname(buf, sizeof(buf)) < 0) { + warn("gethostbyname:"); + return NULL; + } + + return buf; +} |
