Wireshark-commits: [Wireshark-commits] rev 26131: /trunk/ /trunk/epan/dissectors/: packet-alcap.c packet-k12.c packet-xml.c /trunk/epan/: uat.c /trunk/wiretap/: iseries.c k12.c /trunk/wsutil/: Makefile.common str_util.c str_util.h
From:
guy@xxxxxxxxxxxxx
Date: Wed, 03 Sep 2008 19:14:53 GMT
http://anonsvn.wireshark.org/viewvc/viewvc.cgi?view=rev&revision=26131
User: guy
Date: 2008/09/03 12:14 PM
Log:
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.
Directory: /trunk/epan/dissectors/
Changes Path Action
+42 -41 packet-alcap.c Modified
+2 -3 packet-k12.c Modified
+39 -37 packet-xml.c Modified
Directory: /trunk/epan/
Changes Path Action
+5 -2 uat.c Modified
Directory: /trunk/wiretap/
Changes Path Action
+3 -1 iseries.c Modified
+7 -1 k12.c Modified
Directory: /trunk/wsutil/
Changes Path Action
+4 -2 Makefile.common Modified
+50 -0 str_util.c Added
+60 -0 str_util.h Added