diff options
author | Jelmer Vernooij <jelmer@samba.org> | 2008-10-17 12:48:19 +0200 |
---|---|---|
committer | Jelmer Vernooij <jelmer@samba.org> | 2008-10-18 14:28:40 +0200 |
commit | 2d89b52be8104261aa8f028f49210f016cbf4742 (patch) | |
tree | a8fa58b07b0efc5dae0652d7dbc79f99b88e5db4 /source3/lib | |
parent | 519458a2fa01ae7e8eadebbe1d7895740861c468 (diff) | |
download | samba-2d89b52be8104261aa8f028f49210f016cbf4742.tar.gz samba-2d89b52be8104261aa8f028f49210f016cbf4742.tar.bz2 samba-2d89b52be8104261aa8f028f49210f016cbf4742.zip |
Use separate make variables for libutil and libcrypto.
Diffstat (limited to 'source3/lib')
-rw-r--r-- | source3/lib/smbconf/smbconf_txt.c | 2 | ||||
-rw-r--r-- | source3/lib/util.c | 2 |
2 files changed, 2 insertions, 2 deletions
diff --git a/source3/lib/smbconf/smbconf_txt.c b/source3/lib/smbconf/smbconf_txt.c index 1a29f40164..1393a098d5 100644 --- a/source3/lib/smbconf/smbconf_txt.c +++ b/source3/lib/smbconf/smbconf_txt.c @@ -183,7 +183,7 @@ static WERROR smbconf_txt_load_file(struct smbconf_ctx *ctx) WERROR werr; uint64_t new_csn; - if (!file_exist(ctx->path, NULL)) { + if (!file_exist(ctx->path)) { return WERR_BADFILE; } diff --git a/source3/lib/util.c b/source3/lib/util.c index 1cdc5c8ac6..2f1dd83bb1 100644 --- a/source3/lib/util.c +++ b/source3/lib/util.c @@ -2321,7 +2321,7 @@ static char *xx_path(const char *name, const char *rootpath) } trim_string(fname,"","/"); - if (!directory_exist_stat(fname,NULL)) { + if (!directory_exist(fname)) { mkdir(fname,0755); } |