From 69272c9b046bca2d4cbfa8acd09a4e33c4b39b5d Mon Sep 17 00:00:00 2001 From: Volker Lendecke Date: Wed, 10 Jan 2007 07:56:43 +0000 Subject: r20644: Make some functions static, thanks to Michael Adam for the hint. (This used to be commit f1f5d035db067b85e55b1c4009407b47dedcf975) --- source3/passdb/secrets.c | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) (limited to 'source3/passdb') diff --git a/source3/passdb/secrets.c b/source3/passdb/secrets.c index d169ffa329..3ac3a93233 100644 --- a/source3/passdb/secrets.c +++ b/source3/passdb/secrets.c @@ -208,7 +208,7 @@ BOOL secrets_fetch_domain_guid(const char *domain, struct GUID *guid) * * @return stored password's key **/ -const char *trust_keystr(const char *domain) +static const char *trust_keystr(const char *domain) { static fstring keystr; @@ -427,8 +427,8 @@ static size_t tdb_trusted_dom_pass_pack(char* pack_buf, int bufsize, * * @return size of structure unpacked from buffer **/ -size_t tdb_trusted_dom_pass_unpack(char* pack_buf, int bufsize, - TRUSTED_DOM_PASS* pass) +static size_t tdb_trusted_dom_pass_unpack(char* pack_buf, int bufsize, + TRUSTED_DOM_PASS* pass) { int idx, len = 0; -- cgit