pwd 107 lib/shell.c struct passwd *pwd; pwd 109 lib/shell.c pwd = getpwuid (geteuid ()); pwd 110 lib/shell.c if (pwd != NULL) pwd 111 lib/shell.c shell_name = g_strdup (pwd->pw_shell); pwd 279 lib/utilunix.c struct passwd *pwd; pwd 287 lib/utilunix.c pwd = getpwuid (uid); pwd 288 lib/utilunix.c if (pwd != NULL) pwd 290 lib/utilunix.c i_cache_add ((int) uid, uid_cache, UID_CACHE_SIZE, pwd->pw_name, (int *) &uid_last); pwd 291 lib/utilunix.c return pwd->pw_name; pwd 825 lib/vfs/interface.c struct passwd *pwd; pwd 842 lib/vfs/interface.c pwd = getpwuid (getuid ()); pwd 843 lib/vfs/interface.c if (pwd != NULL) pwd 844 lib/vfs/interface.c g_snprintf (buffer, sizeof (buffer), "%s/mc-%s", sys_tmp, pwd->pw_name);