summaryrefslogtreecommitdiff
path: root/platform.c
diff options
context:
space:
mode:
authorColin Watson <cjwatson@debian.org>2013-05-07 13:15:13 +0100
committerColin Watson <cjwatson@debian.org>2013-05-07 13:15:13 +0100
commit99bd7d0d3fca960b65d84c0f9b928c442db48b0a (patch)
treeb75ca5585f8147309d53aeee285ad26bd425a097 /platform.c
parent2ea3f720daeb1ca9f765365fce3a9546961fe624 (diff)
Move platform_sys_dir_uid to misc.c to fix linking following user-group-modes.patch.
Diffstat (limited to 'platform.c')
-rw-r--r--platform.c16
1 files changed, 0 insertions, 16 deletions
diff --git a/platform.c b/platform.c
index a962f15b5..0b3bee147 100644
--- a/platform.c
+++ b/platform.c
@@ -194,19 +194,3 @@ platform_krb5_get_principal_name(const char *pw_name)
194 return NULL; 194 return NULL;
195#endif 195#endif
196} 196}
197
198/*
199 * return 1 if the specified uid is a uid that may own a system directory
200 * otherwise 0.
201 */
202int
203platform_sys_dir_uid(uid_t uid)
204{
205 if (uid == 0)
206 return 1;
207#ifdef PLATFORM_SYS_DIR_UID
208 if (uid == PLATFORM_SYS_DIR_UID)
209 return 1;
210#endif
211 return 0;
212}