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/utils | |
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/utils')
-rw-r--r-- | source3/utils/testparm.c | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/source3/utils/testparm.c b/source3/utils/testparm.c index 4370d49523..05682efe5d 100644 --- a/source3/utils/testparm.c +++ b/source3/utils/testparm.c @@ -56,7 +56,7 @@ cannot be set in the smb.conf file. nmbd will abort with this setting.\n"); ret = 1; } - if (!directory_exist(lp_lockdir(), &st)) { + if (!directory_exist_stat(lp_lockdir(), &st)) { fprintf(stderr, "ERROR: lock directory %s does not exist\n", lp_lockdir()); ret = 1; @@ -66,7 +66,7 @@ cannot be set in the smb.conf file. nmbd will abort with this setting.\n"); ret = 1; } - if (!directory_exist(lp_piddir(), &st)) { + if (!directory_exist_stat(lp_piddir(), &st)) { fprintf(stderr, "ERROR: pid directory %s does not exist\n", lp_piddir()); ret = 1; |