aboutsummaryrefslogtreecommitdiff
path: root/slstatuso/components/user.c
diff options
context:
space:
mode:
Diffstat (limited to 'slstatuso/components/user.c')
-rwxr-xr-xslstatuso/components/user.c33
1 files changed, 0 insertions, 33 deletions
diff --git a/slstatuso/components/user.c b/slstatuso/components/user.c
deleted file mode 100755
index 3517495..0000000
--- a/slstatuso/components/user.c
+++ /dev/null
@@ -1,33 +0,0 @@
-/* See LICENSE file for copyright and license details. */
-#include <pwd.h>
-#include <stdio.h>
-#include <sys/types.h>
-#include <unistd.h>
-
-#include "../slstatus.h"
-#include "../util.h"
-
-const char *
-gid(const char *unused)
-{
- return bprintf("%d", getgid());
-}
-
-const char *
-username(const char *unused)
-{
- struct passwd *pw;
-
- if (!(pw = getpwuid(geteuid()))) {
- warn("getpwuid '%d':", geteuid());
- return NULL;
- }
-
- return bprintf("%s", pw->pw_name);
-}
-
-const char *
-uid(const char *unused)
-{
- return bprintf("%d", geteuid());
-}