summaryrefslogtreecommitdiff
path: root/source3/lib/data_blob.c
diff options
context:
space:
mode:
authorAndrew Bartlett <abartlet@samba.org>2002-05-23 14:24:59 +0000
committerAndrew Bartlett <abartlet@samba.org>2002-05-23 14:24:59 +0000
commitfb70dbdffa865b453330911841ce920ab19ad60c (patch)
tree95ec8cf0716764f71d4295a102fae37799355fe7 /source3/lib/data_blob.c
parente46a6ecc697418ad7eb9aedb1610d1fbbe419029 (diff)
downloadsamba-fb70dbdffa865b453330911841ce920ab19ad60c.tar.gz
samba-fb70dbdffa865b453330911841ce920ab19ad60c.tar.bz2
samba-fb70dbdffa865b453330911841ce920ab19ad60c.zip
Nobody uses this, and its really just a layer of internal implementation.
Make it static (till sombody needs its...) (This used to be commit 89dc15732062b46276d1d7a155954ee565070491)
Diffstat (limited to 'source3/lib/data_blob.c')
-rw-r--r--source3/lib/data_blob.c2
1 files changed, 1 insertions, 1 deletions
diff --git a/source3/lib/data_blob.c b/source3/lib/data_blob.c
index 6b9f5cbb04..d690cd05a0 100644
--- a/source3/lib/data_blob.c
+++ b/source3/lib/data_blob.c
@@ -91,7 +91,7 @@ void data_blob_free(DATA_BLOB *d)
/*******************************************************************
clear a DATA_BLOB's contents
*******************************************************************/
-void data_blob_clear(DATA_BLOB *d)
+static void data_blob_clear(DATA_BLOB *d)
{
if (d->data) {
memset(d->data, 0, d->length);