From ddf19f91e5e4b003f7af994ddb958630f340ce93 Mon Sep 17 00:00:00 2001
From: Derrell Lipman <derrell.lipman@unwireduniverse.com>
Date: Sat, 1 Mar 2008 21:19:52 -0500
Subject: Return NULL, not 0, from a function which returns a pointer. (cherry
 picked from commit 23cb9c49e3724cecaa66655ef64c3111bf14c552) (This used to be
 commit 9b4bd6473ed3f93c1bbfae3f82d0a100e832df48)

---
 source3/libsmb/libsmb_cache.c   | 1 -
 source3/libsmb/libsmb_context.c | 4 ++--
 2 files changed, 2 insertions(+), 3 deletions(-)

(limited to 'source3')

diff --git a/source3/libsmb/libsmb_cache.c b/source3/libsmb/libsmb_cache.c
index ff13fd7eac..c45aba4544 100644
--- a/source3/libsmb/libsmb_cache.c
+++ b/source3/libsmb/libsmb_cache.c
@@ -1,4 +1,3 @@
-
 /* 
    Unix SMB/CIFS implementation.
    SMB client library implementation (server cache)
diff --git a/source3/libsmb/libsmb_context.c b/source3/libsmb/libsmb_context.c
index 8af49d12be..c107ab2220 100644
--- a/source3/libsmb/libsmb_context.c
+++ b/source3/libsmb/libsmb_context.c
@@ -424,7 +424,7 @@ smbc_init_context(SMBCCTX *context)
         
         /* Do not initialise the same client twice */
         if (context->internal->initialized) {
-                return 0;
+                return NULL;
         }
         
         if (!context->server.get_auth_data_fn ||
@@ -446,7 +446,7 @@ smbc_init_context(SMBCCTX *context)
                 
                 /* Set this to what the user wants */
                 DEBUGLEVEL = context->config.debug;
-                
+               
                 load_case_tables();
                 
                 setup_logging("libsmbclient", True);
-- 
cgit