diff options
author | Luke Leighton <lkcl@samba.org> | 1999-07-07 21:22:18 +0000 |
---|---|---|
committer | Luke Leighton <lkcl@samba.org> | 1999-07-07 21:22:18 +0000 |
commit | 15291cb74fd129fafe908e0e57c8ba578621585b (patch) | |
tree | d29fbb5a65551485f96611ca3632810f39ab3379 /source3/lib/sids.c | |
parent | 264459d25a65eceb3b87debf4b448a9af625287d (diff) | |
download | samba-15291cb74fd129fafe908e0e57c8ba578621585b.tar.gz samba-15291cb74fd129fafe908e0e57c8ba578621585b.tar.bz2 samba-15291cb74fd129fafe908e0e57c8ba578621585b.zip |
use of dos_mkdir() in generate_sam_sid() should be unix mkdir
(This used to be commit 16371d8fe130f89bedebc63fdc4bf0f6f993f309)
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 07c7d0823e..7eb968a435 100644 --- a/source3/lib/sids.c +++ b/source3/lib/sids.c @@ -311,7 +311,7 @@ BOOL generate_sam_sid(char *domain_name) } if (!directory_exist(sid_file, NULL)) { - if (dos_mkdir(sid_file, 0700) != 0) { + if (mkdir(sid_file, 0700) != 0) { DEBUG(0,("can't create private directory %s : %s\n", sid_file, strerror(errno))); return False; |