diff options
author | Andrew Tridgell <tridge@samba.org> | 2004-05-03 09:34:18 +0000 |
---|---|---|
committer | Gerald (Jerry) Carter <jerry@samba.org> | 2007-10-10 12:51:43 -0500 |
commit | b96695ca23f8d1d95ed2e038ea66e6a0580356c3 (patch) | |
tree | ef455173636e89c495b9826533a79055e0742ce7 /source4/lib/ldb/common | |
parent | 1cc8db013226fada2249e4e210a7b020e8e31564 (diff) | |
download | samba-b96695ca23f8d1d95ed2e038ea66e6a0580356c3.tar.gz samba-b96695ca23f8d1d95ed2e038ea66e6a0580356c3.tar.bz2 samba-b96695ca23f8d1d95ed2e038ea66e6a0580356c3.zip |
r454: allow a non-URL form of a filename to be used in ldb_connect(). This
makes it a little easier to work with the ldb tools
(This used to be commit 03df31cef025b2087531579437d6bae1ec36e82f)
Diffstat (limited to 'source4/lib/ldb/common')
-rw-r--r-- | source4/lib/ldb/common/ldb.c | 3 |
1 files changed, 2 insertions, 1 deletions
diff --git a/source4/lib/ldb/common/ldb.c b/source4/lib/ldb/common/ldb.c index f61ddecdc7..ac77f306e9 100644 --- a/source4/lib/ldb/common/ldb.c +++ b/source4/lib/ldb/common/ldb.c @@ -48,7 +48,8 @@ struct ldb_context *ldb_connect(const char *url, unsigned int flags, const char *options[]) { - if (strncmp(url, "tdb:", 4) == 0) { + if (strncmp(url, "tdb:", 4) == 0 || + strchr(url, ':') == NULL) { return ltdb_connect(url, flags, options); } |