diff options
author | Gerald Carter <jerry@samba.org> | 2005-02-25 18:49:42 +0000 |
---|---|---|
committer | Gerald (Jerry) Carter <jerry@samba.org> | 2007-10-10 10:55:48 -0500 |
commit | 40d738f50957f7f2e3e55e6749afbe7421fb73d8 (patch) | |
tree | a7ec43a1d8d5a0ea6c11621502656043689ed1a7 | |
parent | b03c74446ae8fe7db2a78006903f24e2b1ce4d93 (diff) | |
download | samba-40d738f50957f7f2e3e55e6749afbe7421fb73d8.tar.gz samba-40d738f50957f7f2e3e55e6749afbe7421fb73d8.tar.bz2 samba-40d738f50957f7f2e3e55e6749afbe7421fb73d8.zip |
r5568: fix more breakage on gcc 2.96
(This used to be commit 3eeecff05efec9310cf2bed7c6fe9a6d80dd6d0d)
-rw-r--r-- | source3/sam/idmap_rid.c | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/source3/sam/idmap_rid.c b/source3/sam/idmap_rid.c index f16dbfb5e8..ef4b8ef569 100644 --- a/source3/sam/idmap_rid.c +++ b/source3/sam/idmap_rid.c @@ -51,9 +51,9 @@ static NTSTATUS rid_idmap_parse(const char *init_param, int i; fstring sid_str; BOOL known_domain = False; - p = init_param; fstring tok; + p = init_param; trust.number = 0; /* falling back to automatic mapping when there were no options given */ |