summaryrefslogtreecommitdiff
path: root/wsutil/Makefile.common
diff options
context:
space:
mode:
authorGuy Harris <guy@alum.mit.edu>2008-09-03 19:14:52 +0000
committerGuy Harris <guy@alum.mit.edu>2008-09-03 19:14:52 +0000
commit9d1b5335ac1f48f57712f2937391c7a7b9ce6c19 (patch)
treea80eab1d12198196a9ae17670fe8f845c7204593 /wsutil/Makefile.common
parent5dd544c914ac58d483bbb78bf7903de331fa2318 (diff)
downloadwireshark-9d1b5335ac1f48f57712f2937391c7a7b9ce6c19.tar.gz
g_ascii_strdown() and g_ascii_strup(), unlike g_strdown() and g_strup(),
do *not* modify the string handed to them - they g_mallocate a new string and return it. Create routines that *do* ASCII-only case mapping in place, and use them instead. Clean up indentation. svn path=/trunk/; revision=26131
Diffstat (limited to 'wsutil/Makefile.common')
-rw-r--r--wsutil/Makefile.common6
1 files changed, 4 insertions, 2 deletions
diff --git a/wsutil/Makefile.common b/wsutil/Makefile.common
index 284e62eee6..585213db52 100644
--- a/wsutil/Makefile.common
+++ b/wsutil/Makefile.common
@@ -30,9 +30,11 @@
# _SOURCES variables).
LIBWSUTIL_SRC = \
mpeg-audio.c \
- privileges.c
+ privileges.c \
+ str_util.c
# Header files that are not generated from other files
LIBWSUTIL_INCLUDES = \
mpeg-audio.h \
- privileges.h
+ privileges.h \
+ str_util.h