From 878e029797cfc9754771d6f6ea17f8c89e11d225 Mon Sep 17 00:00:00 2001 From: Damien Miller Date: Fri, 25 Aug 2017 13:25:01 +1000 Subject: 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. --- platform.c | 16 ---------------- 1 file changed, 16 deletions(-) (limited to 'platform.c') 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) 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; -} -- cgit v1.2.3