diff options
author | Peter Korsgaard <peter@korsgaard.com> | 2017-11-13 23:16:31 +0100 |
---|---|---|
committer | Peter Korsgaard <peter@korsgaard.com> | 2017-11-13 23:16:31 +0100 |
commit | f5022e070a87d595f0f5810833875e8c69a5f1a1 (patch) | |
tree | 0a743e9dec683dc45cc6033d0bcaad0819c2fc43 /package/libpjsip/0001-Fixed-possible-function-name-clash.patch | |
parent | e57335cec2afe1aac395018c988e8946f8c76207 (diff) | |
parent | 071cc43892f4a6c0b26b7a145f844acde31e7ee0 (diff) | |
download | buildroot-f5022e070a87d595f0f5810833875e8c69a5f1a1.tar.gz buildroot-f5022e070a87d595f0f5810833875e8c69a5f1a1.zip |
Merge tag '2017.11-rc2' into next
master has gained a number of autobuilder bugfixes since rc1, so merge these
to next to also fix them there.
Diffstat (limited to 'package/libpjsip/0001-Fixed-possible-function-name-clash.patch')
-rw-r--r-- | package/libpjsip/0001-Fixed-possible-function-name-clash.patch | 26 |
1 files changed, 26 insertions, 0 deletions
diff --git a/package/libpjsip/0001-Fixed-possible-function-name-clash.patch b/package/libpjsip/0001-Fixed-possible-function-name-clash.patch new file mode 100644 index 0000000000..435b0eab54 --- /dev/null +++ b/package/libpjsip/0001-Fixed-possible-function-name-clash.patch @@ -0,0 +1,26 @@ +Re #2059 (misc): Fixed possible function name clash with md5 due to non-static function. + +Backported from: https://trac.pjsip.org/repos/changeset/5688 +Signed-off-by: Luca Ceresoli <luca@lucaceresoli.net> + +Index: pjlib-util/src/pjlib-util/md5.c +=================================================================== +diff --git a/pjproject/pjlib-util/src/pjlib-util/md5.c b/pjproject/pjlib-util/src/pjlib-util/md5.c +--- a/pjlib-util/src/pjlib-util/md5.c (revision 5687) ++++ b/pjlib-util/src/pjlib-util/md5.c (revision 5688) +@@ -29,13 +29,13 @@ + #ifndef HIGHFIRST + #define byteReverse(buf, len) /* Nothing */ + #else +-void byteReverse(unsigned char *buf, unsigned longs); ++static void byteReverse(unsigned char *buf, unsigned longs); + + #ifndef ASM_MD5 + /* + * Note: this code is harmless on little-endian machines. + */ +-void byteReverse(unsigned char *buf, unsigned longs) ++static void byteReverse(unsigned char *buf, unsigned longs) + { + pj_uint32_t t; + do { |