summaryrefslogtreecommitdiff
path: root/platform.c
diff options
context:
space:
mode:
authorDamien Miller <djm@mindrot.org>2017-08-25 13:25:01 +1000
committerDamien Miller <djm@mindrot.org>2017-08-25 13:25:01 +1000
commit878e029797cfc9754771d6f6ea17f8c89e11d225 (patch)
tree4531486041197612181ea62f3a33cf9f7c342558 /platform.c
parent07949bfe9133234eddd01715592aa0dde67745f0 (diff)
Split platform_sys_dir_uid into its own file
platform.o is too heavy for libssh.a use; it calls into the server on many platforms. Move just the function needed by misc.c into its own file.
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 973a63e40..18c7751de 100644
--- a/platform.c
+++ b/platform.c
@@ -197,19 +197,3 @@ platform_krb5_get_principal_name(const char *pw_name)
197 return NULL; 197 return NULL;
198#endif 198#endif
199} 199}
200
201/*
202 * return 1 if the specified uid is a uid that may own a system directory
203 * otherwise 0.
204 */
205int
206platform_sys_dir_uid(uid_t uid)
207{
208 if (uid == 0)
209 return 1;
210#ifdef PLATFORM_SYS_DIR_UID
211 if (uid == PLATFORM_SYS_DIR_UID)
212 return 1;
213#endif
214 return 0;
215}