From 85428819e3acd408f8aca7db5cd681b828fe37a2 Mon Sep 17 00:00:00 2001 From: Stefan Metzmacher Date: Tue, 5 Oct 2004 11:10:26 +0000 Subject: r2825: fix the build this function names are unsed elsewhere in the code too metze (This used to be commit a8f2fe0ff0dc2b4219a2cc56272e1e929b9b59b8) --- source4/ldap_server/ldap_parse.c | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) (limited to 'source4') diff --git a/source4/ldap_server/ldap_parse.c b/source4/ldap_server/ldap_parse.c index b28242783e..29079ad8f2 100644 --- a/source4/ldap_server/ldap_parse.c +++ b/source4/ldap_server/ldap_parse.c @@ -21,7 +21,7 @@ #include "includes.h" #include "ldap_parse.h" -char char_from_hex(char a, char b) { +static char char_from_hex(char a, char b) { char m, l; if ('0' <= a && a <= '9') { @@ -47,7 +47,7 @@ char char_from_hex(char a, char b) { return ((m << 4) + l); } -char *parse_slash(char *p, char *end) { +static char *parse_slash(char *p, char *end) { switch (*(p + 1)) { case ',': case '=': -- cgit