1
0
mirror of https://github.com/samba-team/samba.git synced 2025-03-07 00:58:40 +03:00

r990: fix tdb standalone build

metze
(This used to be commit 4c1c9f59ccea8b6cd7edf3bad8acb9cd8c772670)
This commit is contained in:
Stefan Metzmacher 2004-06-03 15:59:26 +00:00 committed by Gerald (Jerry) Carter
parent e071ecd991
commit 4309727424

View File

@ -63,7 +63,7 @@ static TDB_CONTEXT *tdb;
static int print_rec(TDB_CONTEXT *the_tdb, TDB_DATA key, TDB_DATA dbuf, void *state);
static void print_asc(uint8_t *buf,int len)
static void print_asc(unsigned char *buf,int len)
{
int i;
@ -77,7 +77,7 @@ static void print_asc(uint8_t *buf,int len)
printf("%c",isprint(buf[i])?buf[i]:'.');
}
static void print_data(uint8_t *buf,int len)
static void print_data(unsigned char *buf,int len)
{
int i=0;
if (len<=0) return;