Skip to content
Snippets Groups Projects
Commit b131aab0 authored by Howard Chu's avatar Howard Chu
Browse files

Streamline call to lutil_passwd_scheme

parent 46fab059
No related branches found
No related tags found
No related merge requests found
......@@ -417,11 +417,7 @@ password_scheme( struct berval *cred, struct berval *sch )
for(e = 1; cred->bv_val[e] && cred->bv_val[e] != '}'; e++);
if (cred->bv_val[e]) {
int rc;
char *sc = ch_calloc( sizeof(char), e + 2);
sc[e + 1] = '\0'; /* terminate string */
strncpy( sc, cred->bv_val, e + 1);
rc = lutil_passwd_scheme( sc );
free( sc );
rc = lutil_passwd_scheme( cred->bv_val );
if (rc && sch) {
sch->bv_val = cred->bv_val;
sch->bv_len = e;
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment