svn commit: samba r12981 - in trunk/source: include libads

vlendec at samba.org vlendec at samba.org
Tue Jan 17 16:00:50 GMT 2006


Author: vlendec
Date: 2006-01-17 16:00:48 +0000 (Tue, 17 Jan 2006)
New Revision: 12981

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

Log:
Attempt to fix the build on machines w/o krb5.h
Modified:
   trunk/source/include/includes.h
   trunk/source/libads/krb5_setpw.c


Changeset:
Modified: trunk/source/include/includes.h
===================================================================
--- trunk/source/include/includes.h	2006-01-17 15:01:11 UTC (rev 12980)
+++ trunk/source/include/includes.h	2006-01-17 16:00:48 UTC (rev 12981)
@@ -1514,6 +1514,7 @@
 			DATA_BLOB *ticket, DATA_BLOB *session_key_krb5, uint32 extra_ap_opts, const char *ccname);
 PAC_LOGON_INFO *get_logon_info_from_pac(PAC_DATA *pac_data);
 krb5_error_code smb_krb5_renew_ticket(const char *ccache_string, const char *client_string, const char *service_string, time_t *new_start_time);
+krb5_error_code kpasswd_err_to_krb5_err(krb5_error_code res_code);
 #endif /* HAVE_KRB5 */
 
 

Modified: trunk/source/libads/krb5_setpw.c
===================================================================
--- trunk/source/libads/krb5_setpw.c	2006-01-17 15:01:11 UTC (rev 12980)
+++ trunk/source/libads/krb5_setpw.c	2006-01-17 16:00:48 UTC (rev 12981)
@@ -221,7 +221,7 @@
         return (0);
 }
 
-krb5_error_code kpasswd_err_to_krb5_err(krb5_error_code res_code) 
+ krb5_error_code kpasswd_err_to_krb5_err(krb5_error_code res_code) 
 {
 	switch(res_code) {
 		case KRB5_KPASSWD_ACCESSDENIED:



More information about the samba-cvs mailing list