summaryrefslogtreecommitdiff
path: root/epan/strutil.c
diff options
context:
space:
mode:
authorJakub Zawadzki <darkjames-ws@darkjames.pl>2013-11-16 09:26:08 +0000
committerJakub Zawadzki <darkjames-ws@darkjames.pl>2013-11-16 09:26:08 +0000
commitf3ef33d0967deb77c77c5f4b4289f1b296199f7b (patch)
tree653358b94958876ae2ea1585982c2e6ab85589e0 /epan/strutil.c
parent3b9f6dfab4f4efe1d97450d1d69d1b37f822ad5f (diff)
downloadwireshark-f3ef33d0967deb77c77c5f4b4289f1b296199f7b.tar.gz
Fix epan_memmem() copyrights.
svn path=/trunk/; revision=53366
Diffstat (limited to 'epan/strutil.c')
-rw-r--r--epan/strutil.c2
1 files changed, 1 insertions, 1 deletions
diff --git a/epan/strutil.c b/epan/strutil.c
index 1265f9f89e..a3e8710c0e 100644
--- a/epan/strutil.c
+++ b/epan/strutil.c
@@ -810,7 +810,7 @@ xml_escape(const gchar *unescaped)
/* Return the first occurrence of needle in haystack.
* If not found, return NULL.
* If either haystack or needle has 0 length, return NULL.
- * Algorithm copied from GNU's glibc 2.3.2 memcmp() */
+ * Algorithm copied from GNU's glibc 2.3.2 memmem() under LGPL 2.1+ */
const guint8 *
epan_memmem(const guint8 *haystack, guint haystack_len,
const guint8 *needle, guint needle_len)