svn commit: samba r14463 - in trunk/source/lib: .

jra at samba.org jra at samba.org
Wed Mar 15 23:11:02 GMT 2006


Author: jra
Date: 2006-03-15 23:11:00 +0000 (Wed, 15 Mar 2006)
New Revision: 14463

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

Log:
Fix warning. ber_tag_t is an unsigned int for
printing purposes.
Jeremy.

Modified:
   trunk/source/lib/smbldap.c


Changeset:
Modified: trunk/source/lib/smbldap.c
===================================================================
--- trunk/source/lib/smbldap.c	2006-03-15 23:10:38 UTC (rev 14462)
+++ trunk/source/lib/smbldap.c	2006-03-15 23:11:00 UTC (rev 14463)
@@ -872,7 +872,7 @@
 		case LDAP_REQ_EXTENDED:
 			DEBUG(10,("rebindproc_connect_with_state: "
 				"setting last_rebind timestamp "
-				"(req: 0x%02x)\n", request));
+				"(req: 0x%02x)\n", (unsigned int)request));
 			GetTimeOfDay(&ldap_state->last_rebind);
 			break;
 		default:



More information about the samba-cvs mailing list