r12081: r10674@cabra: derrell | 2005-12-05 13:31:28 -0500
authorDerrell Lipman <derrell@samba.org>
Mon, 5 Dec 2005 23:30:45 +0000 (23:30 +0000)
committerGerald (Jerry) Carter <jerry@samba.org>
Wed, 10 Oct 2007 16:05:44 +0000 (11:05 -0500)
 get rid of temporary #if 0 blocks
(This used to be commit 376445c90b05c36206c87c974c13e5f9297f35eb)

source3/libsmb/libsmbclient.c

index f482c9584f8d6207d9f4434bc4c074ca51ad19bc..9fda48a540b50545b9d75ca4c89c4a7eb00286a8 100644 (file)
@@ -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;