From 78631d38f11a631fe4added2b76deb60a3d835ab Mon Sep 17 00:00:00 2001 From: Derrell Lipman Date: Mon, 5 Dec 2005 23:30:45 +0000 Subject: r12081: r10674@cabra: derrell | 2005-12-05 13:31:28 -0500 get rid of temporary #if 0 blocks (This used to be commit 376445c90b05c36206c87c974c13e5f9297f35eb) --- source3/libsmb/libsmbclient.c | 19 ------------------- 1 file changed, 19 deletions(-) (limited to 'source3/libsmb/libsmbclient.c') diff --git a/source3/libsmb/libsmbclient.c b/source3/libsmb/libsmbclient.c index f482c9584f..9fda48a540 100644 --- a/source3/libsmb/libsmbclient.c +++ b/source3/libsmb/libsmbclient.c @@ -584,24 +584,9 @@ SMBCSRV *smbc_server(SMBCCTX *context, return NULL; } -#if 0 /* choice 1 */ - /* Look for a cached connection, using the provided authinfo */ - srv = find_server(context, server, share, - workgroup, username, password); - - /* If we didn't find one... */ - if (! srv) - { - /* ... then see if there's one using anonymous login */ - fstring anonymous = ""; - srv = find_server(context, server, share, - workgroup, anonymous, password); - } -#else /* Look for a cached connection */ srv = find_server(context, server, share, workgroup, username, password); -#endif /* * If we found a connection and we're only allowed one share per @@ -796,11 +781,7 @@ SMBCSRV *smbc_server(SMBCCTX *context, /* now add it to the cache (internal or external) */ /* Let the cache function set errno if it wants to */ errno = 0; -#if 0 /* choice 2 */ - if (context->callbacks.add_cached_srv_fn(context, srv, server, share, workgroup, username_used)) { -#else if (context->callbacks.add_cached_srv_fn(context, srv, server, share, workgroup, username)) { -#endif int saved_errno = errno; DEBUG(3, (" Failed to add server to cache\n")); errno = saved_errno; -- cgit