diff options
author | Günther Deschner <gd@samba.org> | 2011-01-25 00:52:10 +0100 |
---|---|---|
committer | Günther Deschner <gd@samba.org> | 2011-01-25 11:42:46 +0100 |
commit | 7eac3100ea77eca64152444336180418938d5843 (patch) | |
tree | 1638e8042365f69e6d90faab0aa066345ebef9db /source3/librpc | |
parent | 62e1c80cf532681c02ecd2ddcb7c920381a0465e (diff) | |
download | samba-7eac3100ea77eca64152444336180418938d5843.tar.gz samba-7eac3100ea77eca64152444336180418938d5843.tar.bz2 samba-7eac3100ea77eca64152444336180418938d5843.zip |
libndr: move ndr_print_bool to ndr_basic.c
Guenther
Diffstat (limited to 'source3/librpc')
-rw-r--r-- | source3/librpc/ndr/util.c | 5 |
1 files changed, 0 insertions, 5 deletions
diff --git a/source3/librpc/ndr/util.c b/source3/librpc/ndr/util.c index d6a41a0ef1..33b1bb2076 100644 --- a/source3/librpc/ndr/util.c +++ b/source3/librpc/ndr/util.c @@ -200,11 +200,6 @@ void ndr_print_file_id(struct ndr_print *ndr, const char *name, const struct fil ndr->depth--; } -_PUBLIC_ void ndr_print_bool(struct ndr_print *ndr, const char *name, const bool b) -{ - ndr->print(ndr, "%-25s: %s", name, b?"true":"false"); -} - _PUBLIC_ void ndr_print_sockaddr_storage(struct ndr_print *ndr, const char *name, const struct sockaddr_storage *ss) { char addr[INET6_ADDRSTRLEN]; |