HomeSort by relevance Sort by last modified time
    Searched refs:user (Results 1 - 25 of 891) sorted by null

1 2 3 4 5 6 7 8 91011>>

  /onnv/onnv-gate/usr/src/cmd/tsol/demo/
waitforzone.ksh 28 user=$1
35 while [ ! -d /home/${user} ]; do
39 # Now, run the command you specified as the specified user
41 su - ${user} -c "${program} -display ${display}"
runinzone.ksh 33 user=$2
40 zlogin ${zonename} /usr/demo/tsol/waitforzone.ksh ${user} ${program} ${DISPLAY}
  /onnv/onnv-gate/usr/src/cmd/cmd-inet/usr.sbin/in.ftpd/
authenticate.c 52 char *user; local
60 user = "*";
64 user = "*";
66 user = "?"; /* getpeername/getsockname failure */
68 if (!(user = auth_tcpuser(in, local, remote)))
69 user = "*"; /* remote host doesn't support RFC 931 */
75 strncpy(authuser, user, sizeof(authuser));
  /onnv/onnv-gate/usr/src/uts/common/fs/smbsrv/
smb_user.c 46 * | USER |<----->| USER |......| USER |
68 * User State Machine
92 * - The user is queued in the list of users of his session.
93 * - References will be given out if the user is looked up.
94 * - The user can access files and pipes.
99 * - The user is queued in the list of users of his session.
100 * - References will not be given out if the user is looked up.
101 * - The trees the user connected are being disconnected
215 smb_user_t *user; local
274 smb_user_t *user; local
341 smb_user_t *user; local
450 smb_user_t *user; local
    [all...]
  /onnv/onnv-gate/usr/src/lib/libsecdb/common/
getuserattr.c 55 userstr_t user; local
58 (void) memset(&user, 0, sizeof (userattr_t));
59 tmp = _getuserattr(&user, buf, NSS_BUFLEN_USERATTR, &err);
68 userstr_t user; local
71 (void) memset(&user, 0, sizeof (userattr_t));
72 tmp = _fgetuserattr(f, &user, buf, NSS_BUFLEN_USERATTR);
82 userstr_t user; local
85 resptr = _getusernam(name, &user, buf, NSS_BUFLEN_USERATTR, &err);
119 free_userattr(userattr_t *user)
121 if (user) {
    [all...]
  /onnv/onnv-gate/usr/src/lib/libsmbfs/netsmb/
smb_keychain.h 47 int smbfs_keychain_add(uid_t uid, const char *domain, const char *user,
51 int smbfs_keychain_del(uid_t uid, const char *domain, const char *user);
57 int smbfs_keychain_chk(const char *domain, const char *user);
66 * Requires super-user privliege.
73 * provide (editable) defaults for domain/user
75 * Get default domain and user names
  /onnv/onnv-gate/usr/src/lib/libwrap/
hosts_ctl.c 10 * access control checker. The host name and user name arguments should be
30 int hosts_ctl(daemon, name, addr, user)
34 char *user;
42 RQ_USER, user,
  /onnv/onnv-gate/usr/src/cmd/cmd-inet/usr.sadm/dhcpmgr/com/sun/dhcpmgr/data/
ExportHeader.java 48 * User who requested export
50 private String user; field in class:ExportHeader
66 * @param user name of the user who performed the export
70 public ExportHeader(String server, String user, int recCount,
74 this.user = user;
92 * Retrieve exporting user name
93 * @return name of user
96 return user;
    [all...]
  /onnv/onnv-gate/usr/src/cmd/lp/lib/access/
allowed.c 45 ** is_user_admin() - CHECK IF CURRENT USER IS AN ADMINISTRATOR
61 /* Check that user has print admin authorization */
69 ** is_user_allowed() - CHECK USER ACCESS ACCORDING TO ALLOW/DENY LISTS
75 char * user,
80 is_user_allowed (user, allow, deny)
81 char *user,
86 if (bangequ(user, LOCAL_LPUSER) || bangequ(user, LOCAL_ROOTUSER))
89 return (allowed(user, allow, deny));
93 ** is_user_allowed_form() - CHECK USER ACCESS TO FOR
    [all...]
  /onnv/onnv-gate/usr/src/cmd/perl/5.8.4/distrib/lib/Net/demos/
pop3 10 GetOptions(qw(debug user=s));
14 $user = $opt_user || $ENV{USER} || $ENV{LOGNAME};
16 $count = $pop->login($user);
smtp.self 13 C<smtp.self> will attempt to send a message to a given user
27 =item -user USERNAME
33 demos/smtp.self -user foo.bar
35 demos/smtp.self -debug -user Graham.Barr
44 GetOptions(qw(debug user=s help));
53 $user = $opt_user || $ENV{USER} || $ENV{LOGNAME};
55 $smtp->mail($user) && $smtp->to($user);
58 if($smtp->mail($user) && $smtp->to($user)
    [all...]
  /onnv/onnv-gate/usr/src/cmd/mail/
islocal.c 36 * islocal (char *user, uid_t *puid) - see if user exists on this system
39 islocal(char *user, uid_t *puid)
46 (void) snprintf(fname, sizeof (fname), "%s%s", maildir, user);
54 if ((pwd_ptr = getpwnam(user)) == NULL) {
lock.c 36 lock(char *user)
40 switch (maillock(user, 10)) {
46 program, user);
cksaved.c 32 * void cksaved(char *user)
40 * the end of $MAIL. It is better that a user potentially sees the
48 cksaved(user)
49 char *user;
55 cat(mail, maildir, user);
56 cat(save, mailsave, user);
69 lock(user);
99 "to 0660.\"| mail %s", user);
129 "to your mail box by the mail program.\" | mail %s", user);
133 * Try to send mail to the user whose fil
    [all...]
  /onnv/onnv-gate/usr/src/lib/pam_modules/ldap/
ldap_authenticate.c 43 * Authenticate user.
54 char *user = NULL; local
63 /* Get the service and user */
66 (err = pam_get_item(pamh, PAM_USER, (void **)&user)) != PAM_SUCCESS)
89 service, (user && *user != '\0')?user:"no-user", flags,
92 if (!user || *user == '\0'
    [all...]
  /onnv/onnv-gate/usr/src/cmd/ssh/sshd/
auth-sia.c 56 char *user = authctxt->user; local
60 if (!user || !pass || pass[0] == '\0')
63 if (sia_ses_init(&ent, saved_argc, saved_argv, host, user, NULL, 0,
68 error("Couldn't authenticate %s from %s", user, host);
80 session_setup_sia(char *user, char *tty)
88 if (sia_ses_init(&ent, saved_argc, saved_argv, host, user, tty, 0,
93 if ((pw = getpwnam(user)) == NULL) {
95 fatal("getpwnam: no user: %s", user);
    [all...]
  /onnv/onnv-gate/usr/src/cmd/lp/lib/users/
usermgmt.c 42 static USER usr;
44 int putuser ( char * user, USER * pri_s )
55 if (!add_user(ppri_tbl, user, pri_s->priority_limit))
67 USER * getuser ( char * user )
72 if (STREQU(user, "root") || STREQU(user, LPUSER))
81 return((USER *)0);
87 if (bang_searchlist(user, ppri_tbl->users[limit - PRI_MIN])
    [all...]
  /onnv/onnv-gate/usr/src/cmd/oamuser/user/
rmfiles.c 44 rm_files(homedir, user)
46 char *user;
  /onnv/onnv-gate/usr/src/cmd/sendmail/cf/sh/
makeinfo.sh 77 user=`whoami`
79 user=$LOGNAME
92 if [ -n "$user" ]; then
93 echo '#####' built by $user@$host on `date`
  /onnv/onnv-gate/usr/src/cmd/ssh/include/
sshlogin.h 28 const char *user);
31 const char *user);
  /onnv/onnv-gate/usr/src/cmd/tip/
log.c 24 char *user, *timestamp; local
36 if ((user = getlogin()) == NOSTR)
38 user = "???";
40 user = pwd->pw_name;
45 user, timestamp, group,
  /onnv/onnv-gate/usr/src/cmd/ssh/libssh/common/
tildexpand.c 38 char user[100]; local
60 if (userlen > sizeof (user) - 1)
61 fatal("User name after tilde too long.");
62 memcpy(user, filename, userlen);
63 user[userlen] = 0;
64 pw = getpwnam(user);
69 debug("User account's password entry not found, trying to use "
72 fatal("User account's password entry not found and "
  /onnv/onnv-gate/usr/src/lib/pam_modules/sample/
sample_acct_mgmt.c 39 * It may need to force the user to change his/her
50 char *user; local
62 if (pam_get_item(pamh, PAM_USER, (void **)&user) != PAM_SUCCESS)
70 * we want to use the policy of the current user not the "destination"
71 * user. This will enable us to prevent su to root but not to rlogin,
74 * description of problem: user name is the "destination" name. not
76 * current name in the case of su. user is "root" in this case and
77 * we will be getting the root policy instead of the user policy.
86 user = pw->pw_name;
89 if (user == 0 || *user == '\0' || (strcmp(user, "root") == 0)
    [all...]
  /onnv/onnv-gate/usr/src/lib/pam_modules/tsol_acct/
tsol_acct.c 42 * Validates that the user's label range contains
62 char *user; local
83 (void) pam_get_item(pamh, PAM_USER, (void **)&user);
89 "pam_tsol_account: allowed_unlabeled = %d, user %s, "
92 (user == NULL) ? "NULL" : (user == '\0') ? "ZERO" :
93 user,
97 if (user == NULL || *user == '\0') {
99 "pam_tsol_account: no user");
    [all...]
  /onnv/onnv-gate/usr/src/cmd/bnu/
uuto 56 if test -n "$d" -a -n "$user"
66 if test -n "$f" -a -n "$user"
68 uucp $a $f $remote!~/receive/$user/$mysys/$UUP
85 mesg="Usage: uuto [-mp] files remote!user\n"
115 # the recipient arg: remote!user
117 # must have at least !user
119 user=`expr $1 : '.*!\(.*\)'`
120 if test -z "$user"
122 gettext "uuto: incomplete destination -- must specify user\n" >&2
126 a="$a -d -n $user"
    [all...]

Completed in 809 milliseconds

1 2 3 4 5 6 7 8 91011>>