diff options
author | Jeremy Allison <jra@samba.org> | 1998-05-15 22:29:42 +0000 |
---|---|---|
committer | Jeremy Allison <jra@samba.org> | 1998-05-15 22:29:42 +0000 |
commit | 5e1313d184bb7edc56d33178ce424c82695a996c (patch) | |
tree | 4a36695f9a298c83c8bce9d5cf81017c984c7cc2 /source3/rpc_server/srv_netlog.c | |
parent | c230ee1ef64e88c475497ea94894ac67fc11246b (diff) | |
download | samba-5e1313d184bb7edc56d33178ce424c82695a996c.tar.gz samba-5e1313d184bb7edc56d33178ce424c82695a996c.tar.bz2 samba-5e1313d184bb7edc56d33178ce424c82695a996c.zip |
Fix from "Gerald W. Carter" <cartegw@eng.auburn.edu>, we were
copying from a parameter into an unitialized variable (doh !).
Jeremy.
(This used to be commit a3a0dc14c2f9f703963ade67f30dd6c40bbe7144)
Diffstat (limited to 'source3/rpc_server/srv_netlog.c')
-rw-r--r-- | source3/rpc_server/srv_netlog.c | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/source3/rpc_server/srv_netlog.c b/source3/rpc_server/srv_netlog.c index 23625b96ef..73992faf5d 100644 --- a/source3/rpc_server/srv_netlog.c +++ b/source3/rpc_server/srv_netlog.c @@ -681,7 +681,7 @@ static void api_net_sam_logon( int uid, pstring my_name; pstring my_workgroup; pstring domain_groups; - char *other_sids; + pstring other_sids; uint32 r_uid; uint32 r_gid; |