From: Volker Lendecke Date: Wed, 25 Jan 2012 08:10:04 +0000 (+0100) Subject: Introduce dump_data_file X-Git-Tag: tevent-0.9.15~249 X-Git-Url: http://git.ipfire.org/gitweb.cgi?a=commitdiff_plain;h=e9d66999c6003009aac5a4e115963b1ef581c9dc;p=thirdparty%2Fsamba.git Introduce dump_data_file Autobuild-User: Volker Lendecke Autobuild-Date: Wed Jan 25 11:57:18 CET 2012 on sn-devel-104 --- diff --git a/lib/util/samba_util.h b/lib/util/samba_util.h index 95bf7fd7430..9df3ddfcd0e 100644 --- a/lib/util/samba_util.h +++ b/lib/util/samba_util.h @@ -701,6 +701,12 @@ void dump_data_cb(const uint8_t *buf, int len, void (*cb)(const char *buf, void *private_data), void *private_data); +/** + * Write dump of binary data to a FILE + */ +void dump_data_file(const uint8_t *buf, int len, bool omit_zero_bytes, + FILE *f); + /** * Write dump of binary data to the log file. * diff --git a/lib/util/util.c b/lib/util/util.c index c7c37bc8152..c4fbd0b39fc 100644 --- a/lib/util/util.c +++ b/lib/util/util.c @@ -462,6 +462,17 @@ _PUBLIC_ void dump_data_skip_zeros(int level, const uint8_t *buf, int len) dump_data_cb(buf, len, true, debugadd_cb, &level); } +static void fprintf_cb(const char *buf, void *private_data) +{ + FILE *f = (FILE *)private_data; + fprintf(f, "%s", buf); +} + +void dump_data_file(const uint8_t *buf, int len, bool omit_zero_bytes, + FILE *f) +{ + dump_data_cb(buf, len, omit_zero_bytes, fprintf_cb, f); +} /** malloc that aborts with smb_panic on fail or zero size. diff --git a/librpc/tools/ndrdump.c b/librpc/tools/ndrdump.c index e33115ded84..91bf06fcd9a 100644 --- a/librpc/tools/ndrdump.c +++ b/librpc/tools/ndrdump.c @@ -125,14 +125,9 @@ static const struct ndr_interface_table *load_iface_from_plugin(const char *plug return p; } -static void printf_cb(const char *buf, void *private_data) -{ - printf("%s", buf); -} - static void ndrdump_data(uint8_t *d, uint32_t l, bool force) { - dump_data_cb(d, l, !force, printf_cb, NULL); + dump_data_file(d, l, !force, stdout); } static NTSTATUS ndrdump_pull_and_print_pipes(const char *function, diff --git a/source3/client/client.c b/source3/client/client.c index 47d44705d2d..4b7df92877d 100644 --- a/source3/client/client.c +++ b/source3/client/client.c @@ -3463,11 +3463,6 @@ static int cmd_getfacl(void) return 0; } -static void printf_cb(const char *buf, void *private_data) -{ - printf("%s", buf); -} - /**************************************************************************** Get the EA list of a file ****************************************************************************/ @@ -3511,8 +3506,8 @@ static int cmd_geteas(void) for (i=0; i