From 45e93c19ef95978f908f5b14962770510634cd3b Mon Sep 17 00:00:00 2001 From: Stefan Metzmacher Date: Sat, 29 May 2004 08:11:46 +0000 Subject: r943: change samba4 to use 'uint8_t' instead of 'unsigned char' metze (This used to be commit b5378803fdcb3b3afe7c2932a38828e83470f61a) --- source4/libads/ldap.c | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) (limited to 'source4/libads/ldap.c') diff --git a/source4/libads/ldap.c b/source4/libads/ldap.c index b2afe8db26..6a2dcbaa87 100644 --- a/source4/libads/ldap.c +++ b/source4/libads/ldap.c @@ -1100,7 +1100,7 @@ static void dump_binary(const char *field, struct berval **values) for (i=0; values[i]; i++) { printf("%s: ", field); for (j=0; jbv_len; j++) { - printf("%02X", (unsigned char)values[i]->bv_val[j]); + printf("%02X", (uint8_t)values[i]->bv_val[j]); } printf("\n"); } -- cgit