summaryrefslogtreecommitdiffstats
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 973a63e4..18c7751d 100644
--- a/platform.c
+++ b/platform.c
@@ -197,19 +197,3 @@ platform_krb5_get_principal_name(const char *pw_name)
return NULL;
#endif
}
-
-/*
- * return 1 if the specified uid is a uid that may own a system directory
- * otherwise 0.
- */
-int
-platform_sys_dir_uid(uid_t uid)
-{
- if (uid == 0)
- return 1;
-#ifdef PLATFORM_SYS_DIR_UID
- if (uid == PLATFORM_SYS_DIR_UID)
- return 1;
-#endif
- return 0;
-}