[SCM] Samba Shared Repository - branch v3-2-test updated - release-3-2-0pre2-997-g825f78d

Volker Lendecke vlendec at samba.org
Sat Apr 19 15:02:54 GMT 2008


The branch, v3-2-test has been updated
       via  825f78d9f12b5b3e835bd91961e00402cab0bf60 (commit)
      from  6ae8544ace0dd9ac67d36abbaa26cf311db880ad (commit)

http://gitweb.samba.org/?p=samba.git;a=shortlog;h=v3-2-test


- Log -----------------------------------------------------------------
commit 825f78d9f12b5b3e835bd91961e00402cab0bf60
Author: Volker Lendecke <vl at samba.org>
Date:   Sat Apr 19 17:04:46 2008 +0200

    Fix an uninitialized variable

-----------------------------------------------------------------------

Summary of changes:
 source/lib/messages_ctdbd.c |    2 +-
 1 files changed, 1 insertions(+), 1 deletions(-)


Changeset truncated at 500 lines:

diff --git a/source/lib/messages_ctdbd.c b/source/lib/messages_ctdbd.c
index a01c5e0..7d182a5 100644
--- a/source/lib/messages_ctdbd.c
+++ b/source/lib/messages_ctdbd.c
@@ -46,7 +46,7 @@ struct ctdbd_connection *messaging_ctdbd_connection(void)
 		struct messaging_context *msg;
 
 		ev = event_context_init(NULL);
-		if (!msg) {
+		if (!ev) {
 			DEBUG(0,("event_context_init failed\n"));
 		}
 


-- 
Samba Shared Repository


More information about the samba-cvs mailing list