Home | History | Annotate | Download | only in tools

Lines Matching refs:user

75       /* try from the user database */
76 struct passwd *user = getpwuid (getuid());
77 if (user != NULL)
78 home = user->pw_dir;
83 fprintf (stderr, "Can't get user home directory\n");
129 * time. The idea is that we want to be per-(machine,display,user)
239 struct passwd *user;
248 user = getpwuid (getuid ());
249 if (user == NULL)
251 verbose ("Could not determine the user informations; aborting X11 integration.\n");
254 user_name = xstrdup(user->pw_name);