From 8414d150cee62ba0554cfd645956a88dba02a7eb Mon Sep 17 00:00:00 2001 From: Steve Dickson Date: Fri, 7 Aug 2009 14:34:42 -0400 Subject: Now that only the Section names are case-insensitive the mount code has to make sure the the mount options given to the kernel are in the correct case. Fixed a couple of warnings on #ifndefs Signed-off-by: Steve Dickson --- support/nfs/conffile.c | 12 ------------ 1 file changed, 12 deletions(-) (limited to 'support/nfs/conffile.c') diff --git a/support/nfs/conffile.c b/support/nfs/conffile.c index 97dc88a..b19b739 100644 --- a/support/nfs/conffile.c +++ b/support/nfs/conffile.c @@ -119,18 +119,6 @@ conf_hash(char *s) return hash; } -/* - * Convert letter from upper case to lower case - */ -static inline void upper2lower(char *str) -{ - char *ptr = str; - - while (*ptr) - *ptr++ = tolower(*ptr); -} - - /* * Insert a tag-value combination from LINE (the equal sign is at POS) */ -- cgit