38 lines
1.1 KiB
Diff
38 lines
1.1 KiB
Diff
From f1566e63da92cee5cbc0074df9cd9a8dc078a62e Mon Sep 17 00:00:00 2001
|
|
From: David Herrmann <dh.herrmann@gmail.com>
|
|
Date: Wed, 27 Aug 2014 18:03:29 +0200
|
|
Subject: [PATCH] util: make lookup_uid() global
|
|
|
|
This is a useful helper, make it global. It will be required for
|
|
libsystemd-terminal, at minimum.
|
|
---
|
|
src/shared/util.c | 2 +-
|
|
src/shared/util.h | 1 +
|
|
2 files changed, 2 insertions(+), 1 deletion(-)
|
|
|
|
diff --git a/src/shared/util.c b/src/shared/util.c
|
|
index fdcf5719fa..9e4ff85ffb 100644
|
|
--- a/src/shared/util.c
|
|
+++ b/src/shared/util.c
|
|
@@ -2604,7 +2604,7 @@ bool hostname_is_set(void) {
|
|
return !isempty(u.nodename) && !streq(u.nodename, "(none)");
|
|
}
|
|
|
|
-static char *lookup_uid(uid_t uid) {
|
|
+char *lookup_uid(uid_t uid) {
|
|
long bufsize;
|
|
char *name;
|
|
_cleanup_free_ char *buf = NULL;
|
|
diff --git a/src/shared/util.h b/src/shared/util.h
|
|
index ea87c96956..3401280d09 100644
|
|
--- a/src/shared/util.h
|
|
+++ b/src/shared/util.h
|
|
@@ -432,6 +432,7 @@ int sigprocmask_many(int how, ...);
|
|
|
|
bool hostname_is_set(void);
|
|
|
|
+char* lookup_uid(uid_t uid);
|
|
char* gethostname_malloc(void);
|
|
char* getlogname_malloc(void);
|
|
char* getusername_malloc(void);
|