From 44fa3b90e0f8794dd1b94d12db920dc2149e6ecf Mon Sep 17 00:00:00 2001 From: Tim Potter Date: Mon, 14 Apr 2003 00:12:28 +0000 Subject: Merge removal of some unused functions. Commit mistakenly included with new rpc echo pipe. (This used to be commit b7af3cda28cea859edf6266b6bd8da17a44c85eb) --- source3/lib/util.c | 44 -------------------------------------------- 1 file changed, 44 deletions(-) (limited to 'source3') diff --git a/source3/lib/util.c b/source3/lib/util.c index 4f564b332a..1bfbd6f5a0 100644 --- a/source3/lib/util.c +++ b/source3/lib/util.c @@ -1819,50 +1819,6 @@ enum remote_arch_types get_remote_arch(void) return ra_type; } - -void out_ascii(FILE *f, unsigned char *buf,int len) -{ - int i; - for (i=0;i(per_line/2)) fprintf(f, " "); - while (n--) { - fprintf(f, " "); - } - n = MIN(per_line/2,i%per_line); - out_ascii(f,&buf[i-(i%per_line)],n); fprintf(f, " "); - n = (i%per_line) - n; - if (n>0) out_ascii(f,&buf[i-n],n); - fprintf(f, "\n"); - } -} - void print_asc(int level, const unsigned char *buf,int len) { int i; -- cgit