svn commit: samba r20265 - in branches/SAMBA_3_0_24/source: nsswitch printing script

herb at samba.org herb at samba.org
Tue Dec 19 22:40:40 GMT 2006


Author: herb
Date: 2006-12-19 22:40:39 +0000 (Tue, 19 Dec 2006)
New Revision: 20265

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

Log:
fix a couple more no previous prototype warnings

Modified:
   branches/SAMBA_3_0_24/source/nsswitch/wb_common.c
   branches/SAMBA_3_0_24/source/printing/print_test.c
   branches/SAMBA_3_0_24/source/script/mkbuildoptions.awk


Changeset:
Modified: branches/SAMBA_3_0_24/source/nsswitch/wb_common.c
===================================================================
--- branches/SAMBA_3_0_24/source/nsswitch/wb_common.c	2006-12-19 22:13:10 UTC (rev 20264)
+++ branches/SAMBA_3_0_24/source/nsswitch/wb_common.c	2006-12-19 22:40:39 UTC (rev 20265)
@@ -53,7 +53,7 @@
 
 /* Initialise a response structure */
 
-void init_response(struct winbindd_response *response)
+static void init_response(struct winbindd_response *response)
 {
 	/* Initialise return value */
 

Modified: branches/SAMBA_3_0_24/source/printing/print_test.c
===================================================================
--- branches/SAMBA_3_0_24/source/printing/print_test.c	2006-12-19 22:13:10 UTC (rev 20264)
+++ branches/SAMBA_3_0_24/source/printing/print_test.c	2006-12-19 22:40:39 UTC (rev 20265)
@@ -77,5 +77,6 @@
 
 #else
  /* this keeps fussy compilers happy */
+ void print_test_dummy(void);
  void print_test_dummy(void) {}
 #endif /* DEVELOPER||ENABLE_BUILD_FARM_HACKS */

Modified: branches/SAMBA_3_0_24/source/script/mkbuildoptions.awk
===================================================================
--- branches/SAMBA_3_0_24/source/script/mkbuildoptions.awk	2006-12-19 22:13:10 UTC (rev 20264)
+++ branches/SAMBA_3_0_24/source/script/mkbuildoptions.awk	2006-12-19 22:40:39 UTC (rev 20265)
@@ -25,6 +25,7 @@
 	print "#include \"dynconfig.h\"";
 	print "";
 	print "static void output(BOOL screen, const char *format, ...) PRINTF_ATTRIBUTE(2,3);";
+	print "void build_options(BOOL screen);";
 	print "";
 	print "";
 	print "/****************************************************************************";



More information about the samba-cvs mailing list