svn commit: samba r16269 - branches/SAMBA_3_0/source/include branches/SAMBA_3_0/source/libsmb trunk/source/include trunk/source/libsmb

gd at samba.org gd at samba.org
Thu Jun 15 21:45:14 GMT 2006


Author: gd
Date: 2006-06-15 21:45:10 +0000 (Thu, 15 Jun 2006)
New Revision: 16269

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

Log:
Fix the build.

Guenther

Modified:
   branches/SAMBA_3_0/source/include/includes.h
   branches/SAMBA_3_0/source/libsmb/clikrb5.c
   trunk/source/include/includes.h
   trunk/source/libsmb/clikrb5.c


Changeset:
Modified: branches/SAMBA_3_0/source/include/includes.h
===================================================================
--- branches/SAMBA_3_0/source/include/includes.h	2006-06-15 21:25:57 UTC (rev 16268)
+++ branches/SAMBA_3_0/source/include/includes.h	2006-06-15 21:45:10 UTC (rev 16269)
@@ -1540,6 +1540,9 @@
 krb5_error_code smb_krb5_free_addresses(krb5_context context, smb_krb5_addresses *addr);
 NTSTATUS krb5_to_nt_status(krb5_error_code kerberos_error);
 krb5_error_code nt_status_to_krb5(NTSTATUS nt_status);
+void smb_krb5_free_error(krb5_context context, krb5_error *krberror);
+krb5_error_code handle_krberror_packet(krb5_context context,
+                                         krb5_data *packet);
 #endif /* HAVE_KRB5 */
 
 

Modified: branches/SAMBA_3_0/source/libsmb/clikrb5.c
===================================================================
--- branches/SAMBA_3_0/source/libsmb/clikrb5.c	2006-06-15 21:25:57 UTC (rev 16268)
+++ branches/SAMBA_3_0/source/libsmb/clikrb5.c	2006-06-15 21:45:10 UTC (rev 16269)
@@ -1311,7 +1311,7 @@
 	return ret;
 }
 
-void smb_krb5_free_error(krb5_context context, krb5_error *krberror)
+ void smb_krb5_free_error(krb5_context context, krb5_error *krberror)
 {
 #ifdef HAVE_KRB5_FREE_ERROR_CONTENTS /* Heimdal */
 	krb5_free_error_contents(context, krberror);
@@ -1320,8 +1320,8 @@
 #endif
 }
 
-krb5_error_code handle_krberror_packet(krb5_context context,
-				       krb5_data *packet)
+ krb5_error_code handle_krberror_packet(krb5_context context,
+					krb5_data *packet)
 {
 	krb5_error_code ret;
 	BOOL got_error_code = False;

Modified: trunk/source/include/includes.h
===================================================================
--- trunk/source/include/includes.h	2006-06-15 21:25:57 UTC (rev 16268)
+++ trunk/source/include/includes.h	2006-06-15 21:45:10 UTC (rev 16269)
@@ -1556,6 +1556,9 @@
 krb5_error_code smb_krb5_free_addresses(krb5_context context, smb_krb5_addresses *addr);
 NTSTATUS krb5_to_nt_status(krb5_error_code kerberos_error);
 krb5_error_code nt_status_to_krb5(NTSTATUS nt_status);
+void smb_krb5_free_error(krb5_context context, krb5_error *krberror);
+krb5_error_code handle_krberror_packet(krb5_context context,
+                                         krb5_data *packet);
 #endif /* HAVE_KRB5 */
 
 

Modified: trunk/source/libsmb/clikrb5.c
===================================================================
--- trunk/source/libsmb/clikrb5.c	2006-06-15 21:25:57 UTC (rev 16268)
+++ trunk/source/libsmb/clikrb5.c	2006-06-15 21:45:10 UTC (rev 16269)
@@ -1311,7 +1311,7 @@
 	return ret;
 }
 
-void smb_krb5_free_error(krb5_context context, krb5_error *krberror)
+ void smb_krb5_free_error(krb5_context context, krb5_error *krberror)
 {
 #ifdef HAVE_KRB5_FREE_ERROR_CONTENTS /* Heimdal */
 	krb5_free_error_contents(context, krberror);
@@ -1320,8 +1320,8 @@
 #endif
 }
 
-krb5_error_code handle_krberror_packet(krb5_context context,
-				       krb5_data *packet)
+ krb5_error_code handle_krberror_packet(krb5_context context,
+					krb5_data *packet)
 {
 	krb5_error_code ret;
 	BOOL got_error_code = False;



More information about the samba-cvs mailing list