[SCM] Samba Shared Repository - branch master updated

Andrew Bartlett abartlet at samba.org
Sun Apr 22 21:59:04 MDT 2012


The branch, master has been updated
       via  3969cc2 s3-dbwrap: A void function can not return a value
      from  ee26421 dlz_bind9: Also produce and install binary plugin for bind 9.9

http://gitweb.samba.org/?p=samba.git;a=shortlog;h=master


- Log -----------------------------------------------------------------
commit 3969cc28e8c33a65f659dbea34486a912103a2bf
Author: Andrew Bartlett <abartlet at samba.org>
Date:   Mon Apr 23 12:21:35 2012 +1000

    s3-dbwrap: A void function can not return a value
    
    Only non-gcc compilers seem to notice this as an error.
    
    Andrew Bartlett
    
    Autobuild-User: Andrew Bartlett <abartlet at samba.org>
    Autobuild-Date: Mon Apr 23 05:58:52 CEST 2012 on sn-devel-104

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

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


Changeset truncated at 500 lines:

diff --git a/source3/lib/dbwrap/dbwrap_cache.c b/source3/lib/dbwrap/dbwrap_cache.c
index 2824946..865fcff 100644
--- a/source3/lib/dbwrap/dbwrap_cache.c
+++ b/source3/lib/dbwrap/dbwrap_cache.c
@@ -178,7 +178,7 @@ static void dbwrap_cache_id(struct db_context *db, const uint8_t **id,
 {
 	struct db_cache_ctx *ctx = talloc_get_type_abort(
 		db->private_data, struct db_cache_ctx);
-	return dbwrap_db_id(ctx->backing, id, idlen);
+	dbwrap_db_id(ctx->backing, id, idlen);
 }
 
 struct db_context *db_open_cache(TALLOC_CTX *mem_ctx,


-- 
Samba Shared Repository


More information about the samba-cvs mailing list