diff options
author | Luke Leighton <lkcl@samba.org> | 1998-12-03 17:34:05 +0000 |
---|---|---|
committer | Luke Leighton <lkcl@samba.org> | 1998-12-03 17:34:05 +0000 |
commit | 04452b09754a420486da5fb2587528e52538ba0f (patch) | |
tree | 943c18e29f2213f8f057a2b670ad5a6e513f1804 /source3/lib/sids.c | |
parent | 404b7b49b20829fa415ffed4ba1f473e28de43fe (diff) | |
download | samba-04452b09754a420486da5fb2587528e52538ba0f.tar.gz samba-04452b09754a420486da5fb2587528e52538ba0f.tar.bz2 samba-04452b09754a420486da5fb2587528e52538ba0f.zip |
jean-f spotted bug in test for existence of MACHINE.SID and SAM_NAME.SID.
(This used to be commit 81be1e60764d380adf47737552659854d94ca626)
Diffstat (limited to 'source3/lib/sids.c')
-rw-r--r-- | source3/lib/sids.c | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/source3/lib/sids.c b/source3/lib/sids.c index 9b11f4dea1..de0eb40d9f 100644 --- a/source3/lib/sids.c +++ b/source3/lib/sids.c @@ -326,7 +326,7 @@ BOOL generate_sam_sid(char *domain_name) if (file_exist(machine_sid_file, NULL)) { - if (file_exist(machine_sid_file, NULL)) + if (file_exist(sid_file, NULL)) { DEBUG(0,("both %s and %s exist when only one should, unable to continue\n", machine_sid_file, sid_file)); |