From d65bded0c2435a62bf0fe33828d6dc5b9a74f936 Mon Sep 17 00:00:00 2001 From: Rusty Russell Date: Mon, 23 Jul 2012 14:51:39 +0930 Subject: source3/loadparm.c: Move string_set/string_free inside. The only user, so make them static inside loadparm.c Signed-off-by: Rusty Russell Signed-off-by: Andrew Bartlett --- source3/include/proto.h | 2 -- 1 file changed, 2 deletions(-) (limited to 'source3/include/proto.h') diff --git a/source3/include/proto.h b/source3/include/proto.h index 101d62d3a3..ebb76effac 100644 --- a/source3/include/proto.h +++ b/source3/include/proto.h @@ -671,8 +671,6 @@ bool strhasupper(const char *s); bool strhaslower(const char *s); char *StrnCpy(char *dest,const char *src,size_t n); bool in_list(const char *s, const char *list, bool casesensitive); -void string_free(char **s); -bool string_set(char **dest,const char *src); void fstring_sub(char *s,const char *pattern,const char *insert); char *realloc_string_sub2(char *string, const char *pattern, -- cgit