From 1546ccfd24a712973c82fcd2064d3c48381f1360 Mon Sep 17 00:00:00 2001 From: Andrew Tridgell Date: Sat, 5 Sep 1998 01:12:07 +0000 Subject: got rid of interpret_security(). Thanks to Jean-Francois for pointing out it is no longer used (replaced by enumerated types in loadparm.c) (This used to be commit 88df8a8b25921389ee9d017b770bbae143cc51b8) --- source3/lib/util.c | 17 ----------------- 1 file changed, 17 deletions(-) (limited to 'source3/lib/util.c') diff --git a/source3/lib/util.c b/source3/lib/util.c index 260435d9e8..8432071d80 100644 --- a/source3/lib/util.c +++ b/source3/lib/util.c @@ -3599,23 +3599,6 @@ int interpret_protocol(char *str,int def) return(def); } -/**************************************************************************** -interpret a security level -****************************************************************************/ -int interpret_security(char *str,int def) -{ - if (strequal(str,"SERVER")) - return(SEC_SERVER); - if (strequal(str,"USER")) - return(SEC_USER); - if (strequal(str,"SHARE")) - return(SEC_SHARE); - - DEBUG(0,("Unrecognised security level %s\n",str)); - - return(def); -} - /**************************************************************************** interpret an internet address or name into an IP address in 4 byte form -- cgit