1
0
mirror of https://github.com/samba-team/samba.git synced 2025-02-03 13:47:25 +03:00

r13662: Typo fix, add more public headers

This commit is contained in:
Jelmer Vernooij 2006-02-23 20:56:10 +00:00 committed by Gerald (Jerry) Carter
parent ba62880f5b
commit d98948716f
4 changed files with 13 additions and 6 deletions

View File

@ -66,5 +66,3 @@ OBJ_FILES = \
OBJ_FILES = db_wrap.o \
gendb.o
REQUIRED_SUBSYSTEMS = LIBLDB LIBTDB

View File

@ -44,6 +44,6 @@ OBJ_FILES = \
connect_multi.o \
connect.o
NOPROTO=YES
REQUIRED_SUBSYSTEMS = LIBCLI_RESOLVE
REQUIRED_SUBSYSTEMS = LIBCLI_RESOLVE SOCKET_WRAPPER LIBTALLOC
# End SUBSYSTEM SOCKET
################################################

View File

@ -1,6 +1,15 @@
[SUBSYSTEM::LIBBASIC]
[LIBRARY::LIBBASIC]
MAJOR_VERSION = 0
MINOR_VERSION = 0
RELEASE_VERSION = 1
DESCRIPTION = Generic utility functions
PRIVATE_PROTO_HEADER = util_proto.h
PUBLIC_HEADERS = util.h
PUBLIC_HEADERS = util.h \
byteorder.h \
debug.h \
mutex.h \
safe_string.h \
xfile.h
OBJ_FILES = xfile.o \
debug.o \
fault.o \

View File

@ -161,7 +161,7 @@ int ms_fnmatch(const char *pattern, const char *string, enum protocol_types prot
}
if (strpbrk(pattern, "<>*?\"") == NULL) {
/* this is not just an optmisation - it is essential
/* this is not just an optimisation - it is essential
for LANMAN1 correctness */
return strcasecmp_m(pattern, string);
}