diff options
author | Jelmer Vernooij <jelmer@samba.org> | 2006-06-26 11:23:06 +0000 |
---|---|---|
committer | Gerald (Jerry) Carter <jerry@samba.org> | 2007-10-10 14:09:31 -0500 |
commit | 4bd40183afd6d423ccbe5f43dac83bd299f86c50 (patch) | |
tree | c87afb16ec738f8fb658b6cd9129e3bd45a62974 /source4/auth | |
parent | 509fd041aa748f4376405fb424117a85dafbbb28 (diff) | |
download | samba-4bd40183afd6d423ccbe5f43dac83bd299f86c50.tar.gz samba-4bd40183afd6d423ccbe5f43dac83bd299f86c50.tar.bz2 samba-4bd40183afd6d423ccbe5f43dac83bd299f86c50.zip |
r16516: Get rid of file_exists() as there already is a file_exist().
(This used to be commit c4b3c2b18c6df43c8a4808fab72bc45439ba9421)
Diffstat (limited to 'source4/auth')
-rw-r--r-- | source4/auth/gensec/schannel_state.c | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/source4/auth/gensec/schannel_state.c b/source4/auth/gensec/schannel_state.c index b9cee49f5a..97bcd40d09 100644 --- a/source4/auth/gensec/schannel_state.c +++ b/source4/auth/gensec/schannel_state.c @@ -45,7 +45,7 @@ struct ldb_context *schannel_db_connect(TALLOC_CTX *mem_ctx) return NULL; } - existed = file_exists(path); + existed = file_exist(path); ldb = ldb_wrap_connect(mem_ctx, path, system_session(mem_ctx), NULL, LDB_FLG_NOSYNC, NULL); |