diff options
author | Tim Potter <tpot@samba.org> | 2001-01-31 17:11:58 +0000 |
---|---|---|
committer | Tim Potter <tpot@samba.org> | 2001-01-31 17:11:58 +0000 |
commit | a86f219f2f63f63e43d5b99e3d190a536954d400 (patch) | |
tree | b603dd8e02513f62817d79195645c22f6c4b8951 | |
parent | 7a08c3a699142fa8079c2736ed70aef0528ad578 (diff) | |
download | samba-a86f219f2f63f63e43d5b99e3d190a536954d400.tar.gz samba-a86f219f2f63f63e43d5b99e3d190a536954d400.tar.xz samba-a86f219f2f63f63e43d5b99e3d190a536954d400.zip |
Missing sys_endpwent() call in get_passwd_entries()
-rw-r--r-- | source/rpc_server/srv_samr.c | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/source/rpc_server/srv_samr.c b/source/rpc_server/srv_samr.c index 857581a4718..e92658ea4d2 100644 --- a/source/rpc_server/srv_samr.c +++ b/source/rpc_server/srv_samr.c @@ -339,7 +339,7 @@ static BOOL get_passwd_entries(SAM_USER_INFO_21 *pw_buf, if (pwd == NULL) { /* totally done, reset everything */ - endpwent(); + sys_endpwent(); current_idx = 0; mapped_idx = 0; } |