1
0
mirror of https://github.com/samba-team/samba.git synced 2024-12-23 17:34:34 +03:00

r2825: fix the build

this function names are unsed elsewhere in the code too

metze
(This used to be commit a8f2fe0ff0)
This commit is contained in:
Stefan Metzmacher 2004-10-05 11:10:26 +00:00 committed by Gerald (Jerry) Carter
parent cf42c06c86
commit 85428819e3

View File

@ -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 '=':