diff options
author | Jim McDonough <jmcd@samba.org> | 2005-10-20 16:07:36 +0000 |
---|---|---|
committer | Gerald (Jerry) Carter <jerry@samba.org> | 2007-10-10 11:05:08 -0500 |
commit | fc8292f38151705e520880acbf57a87982e4325c (patch) | |
tree | ca46af9259b8a418769d601a104997cd4b28189e | |
parent | 46c6d81a4a977c9a83cfd53c2d748876a080dc71 (diff) | |
download | samba-fc8292f38151705e520880acbf57a87982e4325c.tar.gz samba-fc8292f38151705e520880acbf57a87982e4325c.tar.bz2 samba-fc8292f38151705e520880acbf57a87982e4325c.zip |
r11230: Remove the '//' i was using to test something...oops
(This used to be commit cda5a81bbe52308a81a79eb0354aea63027a9701)
-rw-r--r-- | source3/lib/util_sid.c | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/source3/lib/util_sid.c b/source3/lib/util_sid.c index 0a9e6fe310..4c274b5e01 100644 --- a/source3/lib/util_sid.c +++ b/source3/lib/util_sid.c @@ -267,7 +267,7 @@ BOOL string_to_sid(DOM_SID *sidout, const char *sidstr) return False; } -// ZERO_STRUCTP(sidout); + ZERO_STRUCTP(sidout); /* Get the revision number. */ p = sidstr + 2; |