summaryrefslogtreecommitdiff
path: root/slstatus/slstatus-1.1/components/hostname.c
diff options
context:
space:
mode:
authorThomas Ulmer <thomasmulmer02@gmail.com>2025-12-08 11:10:35 -0800
committerThomas Ulmer <thomasmulmer02@gmail.com>2025-12-08 11:10:35 -0800
commita82a073043c1475b46e1e6963c7078df24399745 (patch)
treeaf903573e80c41401fd73e7a3b15b003b56aa7bc /slstatus/slstatus-1.1/components/hostname.c
parent78f1d733b5a24bba9cd36c0fde335e14407d12f7 (diff)
slstatus patch to git
Diffstat (limited to 'slstatus/slstatus-1.1/components/hostname.c')
-rw-r--r--slstatus/slstatus-1.1/components/hostname.c17
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;
+}