From 4e24e930583de3e968da06fea9f06eaabec4ac7e Mon Sep 17 00:00:00 2001 From: Andrew Tridgell Date: Fri, 26 Aug 2005 11:42:21 +0000 Subject: r9647: saved_pac is binary data, so prevent any possible portability problems with signed chars (This used to be commit 4b3e3a9633bf7ce57f537b9897c0e9c613a99f7a) --- source4/torture/auth/pac.c | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) (limited to 'source4/torture/auth/pac.c') diff --git a/source4/torture/auth/pac.c b/source4/torture/auth/pac.c index d5d5d0abc7..5218d73d8f 100644 --- a/source4/torture/auth/pac.c +++ b/source4/torture/auth/pac.c @@ -196,7 +196,7 @@ static BOOL torture_pac_self_check(void) -- abartlet 2005-07-04 */ -static const char saved_pac[] = { +static const uint8_t saved_pac[] = { 0x04, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x01, 0x00, 0x00, 0x00, 0xd8, 0x01, 0x00, 0x00, 0x48, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x0a, 0x00, 0x00, 0x00, 0x20, 0x00, 0x00, 0x00, 0x20, 0x02, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x06, 0x00, 0x00, 0x00, 0x14, 0x00, 0x00, 0x00, -- cgit