svn commit: samba r20268 - in branches/SAMBA_3_0/source: auth include modules

herb at samba.org herb at samba.org
Wed Dec 20 01:07:21 GMT 2006


Author: herb
Date: 2006-12-20 01:07:21 +0000 (Wed, 20 Dec 2006)
New Revision: 20268

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

Log:
merge -r 20261:20263 from samba_3_0_24
get rid of previous prototype warnings

Modified:
   branches/SAMBA_3_0/source/auth/auth_script.c
   branches/SAMBA_3_0/source/include/charset.h
   branches/SAMBA_3_0/source/modules/weird.c


Changeset:
Modified: branches/SAMBA_3_0/source/auth/auth_script.c
===================================================================
--- branches/SAMBA_3_0/source/auth/auth_script.c	2006-12-20 00:58:09 UTC (rev 20267)
+++ branches/SAMBA_3_0/source/auth/auth_script.c	2006-12-20 01:07:21 UTC (rev 20268)
@@ -141,6 +141,7 @@
 	return NT_STATUS_OK;
 }
 
+NTSTATUS auth_script_init(void);
 NTSTATUS auth_script_init(void)
 {
 	return smb_register_auth(AUTH_INTERFACE_VERSION, "script", auth_init_script);

Modified: branches/SAMBA_3_0/source/include/charset.h
===================================================================
--- branches/SAMBA_3_0/source/include/charset.h	2006-12-20 00:58:09 UTC (rev 20267)
+++ branches/SAMBA_3_0/source/include/charset.h	2006-12-20 01:07:21 UTC (rev 20268)
@@ -119,6 +119,7 @@
 struct charset_functions CHARSETNAME ## _functions = 						\
 		{#CHARSETNAME, CHARSETNAME ## _pull, CHARSETNAME ## _push};			\
 												\
+NTSTATUS charset_ ## CHARSETNAME ## _init(void);							\
 NTSTATUS charset_ ## CHARSETNAME ## _init(void)							\
 {												\
 	return smb_register_charset(& CHARSETNAME ## _functions);				\

Modified: branches/SAMBA_3_0/source/modules/weird.c
===================================================================
--- branches/SAMBA_3_0/source/modules/weird.c	2006-12-20 00:58:09 UTC (rev 20267)
+++ branches/SAMBA_3_0/source/modules/weird.c	2006-12-20 01:07:21 UTC (rev 20268)
@@ -125,6 +125,7 @@
 
 struct charset_functions weird_functions = {"WEIRD", weird_pull, weird_push};
 
+NTSTATUS charset_weird_init(void);
 NTSTATUS charset_weird_init(void)
 {
 	return smb_register_charset(&weird_functions);



More information about the samba-cvs mailing list