summaryrefslogtreecommitdiff
path: root/source3/lib
diff options
context:
space:
mode:
authorLuke Leighton <lkcl@samba.org>1999-07-07 21:22:18 +0000
committerLuke Leighton <lkcl@samba.org>1999-07-07 21:22:18 +0000
commit15291cb74fd129fafe908e0e57c8ba578621585b (patch)
treed29fbb5a65551485f96611ca3632810f39ab3379 /source3/lib
parent264459d25a65eceb3b87debf4b448a9af625287d (diff)
downloadsamba-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')
-rw-r--r--source3/lib/sids.c2
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;