1
0
mirror of https://github.com/samba-team/samba.git synced 2025-03-08 04:58:40 +03:00

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

Make it static (till sombody needs its...)
This commit is contained in:
Andrew Bartlett -
parent fa67e4626b
commit 89dc157320

View 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);