aboutsummaryrefslogtreecommitdiff
path: root/src/os_unix.c
diff options
context:
space:
mode:
Diffstat (limited to 'src/os_unix.c')
-rw-r--r--src/os_unix.c28
1 files changed, 0 insertions, 28 deletions
diff --git a/src/os_unix.c b/src/os_unix.c
index 3bbe056cc6..9ed034f4c1 100644
--- a/src/os_unix.c
+++ b/src/os_unix.c
@@ -1078,34 +1078,6 @@ int vim_is_fastterm(char_u *name)
}
/*
- * Insert user name in s[len].
- * Return OK if a name found.
- */
-int mch_get_user_name(char_u *s, int len)
-{
- return mch_get_uname(getuid(), s, len);
-}
-
-/*
- * Insert user name for "uid" in s[len].
- * Return OK if a name found.
- */
-int mch_get_uname(uid_t uid, char_u *s, int len)
-{
-#if defined(HAVE_PWD_H) && defined(HAVE_GETPWUID)
- struct passwd *pw;
-
- if ((pw = getpwuid(uid)) != NULL
- && pw->pw_name != NULL && *(pw->pw_name) != NUL) {
- vim_strncpy(s, (char_u *)pw->pw_name, len - 1);
- return OK;
- }
-#endif
- sprintf((char *)s, "%d", (int)uid); /* assumes s is long enough */
- return FAIL; /* a number is not a name */
-}
-
-/*
* Insert host name is s[len].
*/