mirror of
https://git.openldap.org/openldap/openldap.git
synced 2025-12-24 00:29:35 -05:00
Fix pam_authz parameter input
This commit is contained in:
parent
47f1c8c887
commit
38b3fdafb7
1 changed files with 3 additions and 3 deletions
|
|
@ -271,13 +271,13 @@ int pam_authz(nssov_info *ni,TFILE *fp,Operation *op)
|
|||
READ_STRING_BUF2(fp,svcc,sizeof(svcc));
|
||||
svc.bv_val = svcc;
|
||||
svc.bv_len = tmpint32;
|
||||
READ_STRING_BUF2(fp,svcc,sizeof(ruserc));
|
||||
READ_STRING_BUF2(fp,ruserc,sizeof(ruserc));
|
||||
ruser.bv_val = ruserc;
|
||||
ruser.bv_len = tmpint32;
|
||||
READ_STRING_BUF2(fp,svcc,sizeof(rhostc));
|
||||
READ_STRING_BUF2(fp,rhostc,sizeof(rhostc));
|
||||
rhost.bv_val = rhostc;
|
||||
rhost.bv_len = tmpint32;
|
||||
READ_STRING_BUF2(fp,svcc,sizeof(ttyc));
|
||||
READ_STRING_BUF2(fp,ttyc,sizeof(ttyc));
|
||||
tty.bv_val = ttyc;
|
||||
tty.bv_len = tmpint32;
|
||||
|
||||
|
|
|
|||
Loading…
Reference in a new issue