From 8975676fa435f4178c62e4d213697906ff81059f Mon Sep 17 00:00:00 2001 From: Kurt Zeilenga Date: Fri, 4 Oct 2002 18:36:44 +0000 Subject: [PATCH] Clean up some #else #if 'ing --- servers/slapd/phonetic.c | 6 ++---- 1 file changed, 2 insertions(+), 4 deletions(-) diff --git a/servers/slapd/phonetic.c b/servers/slapd/phonetic.c index 4934cbd316..80522af3e7 100644 --- a/servers/slapd/phonetic.c +++ b/servers/slapd/phonetic.c @@ -161,8 +161,7 @@ phonetic( char *s ) return( ch_strdup( phoneme ) ); } -#else -#if defined(SLAPD_METAPHONE) +#elif defined(SLAPD_METAPHONE) /* * Metaphone copied from C Gazette, June/July 1991, pp 56-57, @@ -432,5 +431,4 @@ phonetic( char *Word ) return( ch_strdup( buf ) ); } -#endif /* metaphone */ -#endif /* SLAPD_PHONETIC */ +#endif /* SLAPD_METAPHONE */ -- 2.39.5