From 3bfbc4aaec0f59e0b77347df1ee1f6f18ac7423c Mon Sep 17 00:00:00 2001 From: Jeremy Allison Date: Tue, 10 Apr 2001 21:43:37 +0000 Subject: Fixed --with-automount compile error. Jeremy. (This used to be commit ab916199f542528293b3f63fe6f24eecd83eccb4) --- source3/lib/util.c | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) (limited to 'source3/lib/util.c') diff --git a/source3/lib/util.c b/source3/lib/util.c index 439788bdac..cd1395aba7 100644 --- a/source3/lib/util.c +++ b/source3/lib/util.c @@ -874,7 +874,7 @@ static void strip_mount_options( pstring *str) *******************************************************************/ #ifdef WITH_NISPLUS_HOME -static char *automount_lookup(char *user_name) +char *automount_lookup(char *user_name) { static fstring last_key = ""; static pstring last_value = ""; @@ -928,7 +928,7 @@ static char *automount_lookup(char *user_name) return last_value; } #else /* WITH_NISPLUS_HOME */ -static char *automount_lookup(char *user_name) +char *automount_lookup(char *user_name) { static fstring last_key = ""; static pstring last_value = ""; -- cgit