summaryrefslogtreecommitdiff
path: root/lib/smbconf
diff options
context:
space:
mode:
authorVolker Lendecke <vl@samba.org>2009-02-21 17:01:58 +0100
committerMichael Adam <obnox@samba.org>2009-02-26 11:05:21 +0100
commit26f238466caa1d40edf74d4678c2e981ec9018bd (patch)
treea1007c40ee6568b7bc7c31a5950138fb1c6ec6e8 /lib/smbconf
parent8e4816f0078fd94a1b83798f52a63dc679eed47e (diff)
downloadsamba-26f238466caa1d40edf74d4678c2e981ec9018bd.tar.gz
samba-26f238466caa1d40edf74d4678c2e981ec9018bd.tar.bz2
samba-26f238466caa1d40edf74d4678c2e981ec9018bd.zip
Speed up "net conf list"
With 1000 shares in the registry, this changed the time of "net conf list" from 1.1 seconds to .6 seconds. Signed-off-by: Michael Adam <obnox@samba.org>
Diffstat (limited to 'lib/smbconf')
-rw-r--r--lib/smbconf/smbconf.c4
1 files changed, 0 insertions, 4 deletions
diff --git a/lib/smbconf/smbconf.c b/lib/smbconf/smbconf.c
index bcab0b97cd..595fd23421 100644
--- a/lib/smbconf/smbconf.c
+++ b/lib/smbconf/smbconf.c
@@ -203,10 +203,6 @@ WERROR smbconf_get_share(struct smbconf_ctx *ctx,
const char *servicename,
struct smbconf_service **service)
{
- if (!smbconf_share_exists(ctx, servicename)) {
- return WERR_NO_SUCH_SERVICE;
- }
-
return ctx->ops->get_share(ctx, mem_ctx, servicename, service);
}