svn commit: samba r22211 - in branches: SAMBA_3_0/source/nsswitch SAMBA_3_0_25/source/nsswitch

jra at samba.org jra at samba.org
Fri Apr 13 22:56:28 GMT 2007


Author: jra
Date: 2007-04-13 22:56:27 +0000 (Fri, 13 Apr 2007)
New Revision: 22211

WebSVN: http://websvn.samba.org/cgi-bin/viewcvs.cgi?view=rev&root=samba&rev=22211

Log:
Don't return a value from void functions !
Jeremy.

Modified:
   branches/SAMBA_3_0/source/nsswitch/winbindd_cache.c
   branches/SAMBA_3_0_25/source/nsswitch/winbindd_cache.c


Changeset:
Modified: branches/SAMBA_3_0/source/nsswitch/winbindd_cache.c
===================================================================
--- branches/SAMBA_3_0/source/nsswitch/winbindd_cache.c	2007-04-13 22:42:21 UTC (rev 22210)
+++ branches/SAMBA_3_0/source/nsswitch/winbindd_cache.c	2007-04-13 22:56:27 UTC (rev 22211)
@@ -759,7 +759,7 @@
 static void centry_put_time(struct cache_entry *centry, time_t t)
 {
 	NTTIME nt = (NTTIME)t;
-	return centry_put_nttime(centry, nt);
+	centry_put_nttime(centry, nt);
 }
 
 /*

Modified: branches/SAMBA_3_0_25/source/nsswitch/winbindd_cache.c
===================================================================
--- branches/SAMBA_3_0_25/source/nsswitch/winbindd_cache.c	2007-04-13 22:42:21 UTC (rev 22210)
+++ branches/SAMBA_3_0_25/source/nsswitch/winbindd_cache.c	2007-04-13 22:56:27 UTC (rev 22211)
@@ -752,7 +752,7 @@
 static void centry_put_time(struct cache_entry *centry, time_t t)
 {
 	NTTIME nt = (NTTIME)t;
-	return centry_put_nttime(centry, nt);
+	centry_put_nttime(centry, nt);
 }
 
 /*



More information about the samba-cvs mailing list