Home
last modified time | relevance | path

Searched refs:uidstr (Results 1 – 4 of 4) sorted by relevance

/illumos-gate/usr/src/cmd/oamuser/user/
H A Dusermod.c94 static char *uidstr = NULL; /* uid from command line */ variable
232 uidstr = optarg;
285 if ((!uidstr && oflag) || (mflag && !dir)) {
406 if (uidstr) {
409 uid = (uid_t)strtol(uidstr, &ptr, (int)10);
411 errmsg(M_INVALID, uidstr, "user id");
437 uidstr = NULL;
642 if (uidstr) { /* set uid flag */
H A Duseradd.c112 static char *uidstr = NULL; /* uid from command line */ variable
224 uidstr = optarg;
289 if (uidstr != NULL || oflag || grps != NULL ||
432 if (uidstr != NULL) {
435 uid = (uid_t)strtol(uidstr, &ptr, (int)10);
437 errmsg(M_INVALID, uidstr, "user id");
665 if (uidstr != NULL) {
/illumos-gate/usr/src/lib/nsswitch/nis/common/
H A Dgetpwnam.c48 char uidstr[12]; /* More than enough */ local
52 (void) snprintf(uidstr, 12, "%u", argp->key.uid);
53 return (_nss_nis_lookup(be, argp, 0, "passwd.byuid", uidstr, 0));
/illumos-gate/usr/src/lib/gss_mechs/mech_krb5/krb5/ccache/
H A Dcc_file.c1311 char *uidstr = strchr(filename, '_'); in krb5_fcc_open_nounlink() local
1315 if (!*++uidstr) in krb5_fcc_open_nounlink()
1319 for (s = uidstr; *s; s++) in krb5_fcc_open_nounlink()
1323 fname_uid = (uid_t) atoi(uidstr); in krb5_fcc_open_nounlink()