Fix epan_memmem() copyrights.

svn path=/trunk/; revision=53366
This commit is contained in:
Jakub Zawadzki 2013-11-16 09:26:08 +00:00
parent 3b9f6dfab4
commit f3ef33d096
1 changed files with 1 additions and 1 deletions

View File

@ -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)