HomeSort by: relevance | last modified time | path
    Searched defs:newpw (Results 1 - 5 of 5) sorted by relevancy

  /src/external/bsd/cron/dist/
pw_dup.c 63 struct passwd *newpw; local
99 if ((newpw = malloc(total)) == NULL)
101 cp = (char *)(void *)newpw;
107 (void)memcpy(newpw, pw, sizeof(struct passwd));
111 newpw->pw_name = cp;
116 newpw->pw_passwd = cp;
122 newpw->pw_class = cp;
128 newpw->pw_gecos = cp;
133 newpw->pw_dir = cp;
138 newpw->pw_shell = cp
    [all...]
  /src/external/bsd/openldap/dist/servers/slapd/
slappasswd.c 122 char *newpw = NULL; local
153 } else if ( newpw != NULL ) {
188 } else if ( newpw != NULL ) {
194 newpw = ch_strdup( optarg );
207 } else if ( newpw != NULL ) {
255 if( newpw == NULL ) {
258 newpw = getpassphrase("New password: ");
259 if ( newpw == NULL ) { /* Allow EOF to exit. */
263 newpw = ch_strdup(newpw);
    [all...]
  /src/external/bsd/openldap/dist/clients/tools/
ldappasswd.c 61 static struct berval newpw = { 0, NULL }; variable in typeref:struct:berval
148 newpw.bv_val = strdup( optarg );
155 newpw.bv_len = strlen( newpw.bv_val );
248 rc = lutil_get_filed_password( newpwfile, &newpw );
255 if( want_newpw && newpw.bv_val == NULL ) {
263 newpw.bv_val = strdup( cknewpw );
266 if( newpw.bv_val == NULL || cknewpw == NULL ||
267 strcmp( newpw.bv_val, cknewpw ))
274 newpw.bv_len = strlen( newpw.bv_val )
    [all...]
  /src/external/bsd/openldap/dist/servers/slapd/back-ldap/
extended.c 220 struct berval newpw; local
230 &newpw );
232 !BER_BVISNULL( &newpw ) )
235 rs->sr_rspdata = slap_passwd_return( &newpw );
236 free( newpw.bv_val );
  /src/external/bsd/openldap/dist/servers/slapd/overlays/
ppolicy.c 2451 struct berval newpw = BER_BVNULL, oldpw = BER_BVNULL, local
2605 newpw = qpw->rs_new;
2860 bv = newpw.bv_val ? &newpw : &addmod->sml_values[0];
3150 if ((pi->hash_passwords) && (addmod) && !newpw.bv_val &&

Completed in 33 milliseconds