1
0
mirror of https://github.com/samba-team/samba.git synced 2025-07-31 20:22:15 +03:00

Nobody uses this, and its really just a layer of internal implementation.

Make it static (till sombody needs its...)
(This used to be commit 89dc157320)
This commit is contained in:
Andrew Bartlett
2002-05-23 14:24:59 +00:00
parent e46a6ecc69
commit fb70dbdffa

View File

@ -91,7 +91,7 @@ void data_blob_free(DATA_BLOB *d)
/******************************************************************* /*******************************************************************
clear a DATA_BLOB's contents clear a DATA_BLOB's contents
*******************************************************************/ *******************************************************************/
void data_blob_clear(DATA_BLOB *d) static void data_blob_clear(DATA_BLOB *d)
{ {
if (d->data) { if (d->data) {
memset(d->data, 0, d->length); memset(d->data, 0, d->length);