Nobody uses this, and its really just a layer of internal implementation.
authorAndrew Bartlett <abartlet@samba.org>
Thu, 23 May 2002 14:24:59 +0000 (14:24 +0000)
committerAndrew Bartlett <abartlet@samba.org>
Thu, 23 May 2002 14:24:59 +0000 (14:24 +0000)
Make it static (till sombody needs its...)
(This used to be commit 89dc15732062b46276d1d7a155954ee565070491)

source3/lib/data_blob.c

index 6b9f5cbb04ae5b96dd607335e50007e58085082f..d690cd05a04d022eff86342441de7a1164cdd32f 100644 (file)
@@ -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);