Author: metze
Date: 2004-10-05 11:10:26 +0000 (Tue, 05 Oct 2004)
New Revision: 2825

WebSVN: 
http://websvn.samba.org/websvn/changeset.php?rep=samba&path=/branches/SAMBA_4_0/source/ldap_server&rev=2825&nolog=1

Log:
fix the build

this function names are unsed elsewhere in the code too

metze

Modified:
   branches/SAMBA_4_0/source/ldap_server/ldap_parse.c


Changeset:
Modified: branches/SAMBA_4_0/source/ldap_server/ldap_parse.c
===================================================================
--- branches/SAMBA_4_0/source/ldap_server/ldap_parse.c  2004-10-05 03:26:02 UTC (rev 
2824)
+++ branches/SAMBA_4_0/source/ldap_server/ldap_parse.c  2004-10-05 11:10:26 UTC (rev 
2825)
@@ -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 @@
        return ((m << 4) + l);
 }
 
-char *parse_slash(char *p, char *end) {
+static char *parse_slash(char *p, char *end) {
        switch (*(p + 1)) {
        case ',':
        case '=':

Reply via email to