diff options
author | Louis Sautier <sautier.louis@gmail.com> | 2016-03-04 13:24:10 +0100 |
---|---|---|
committer | Amy Winston <amynka@gentoo.org> | 2016-03-04 18:43:48 +0100 |
commit | 9ca5e822de1ab3c7f2be4125a1e87c7c6c336eab (patch) | |
tree | 681d98259b3312171325c71868d5d07d4c4c0925 /net-irc/eggdrop/files | |
parent | net-irc/eggdrop: fix compilation with gcc-5 #571004 (diff) | |
download | gentoo-9ca5e822de1ab3c7f2be4125a1e87c7c6c336eab.tar.gz gentoo-9ca5e822de1ab3c7f2be4125a1e87c7c6c336eab.tar.bz2 gentoo-9ca5e822de1ab3c7f2be4125a1e87c7c6c336eab.zip |
net-irc/eggdrop: bump to EAPI=6, fix a QA warning
Add a patch to fix a compilation warning.
Taken from eggheads/eggdrop@7570148085cd33f12ba30897e27e6064c202f12b
Package-Manager: portage-2.2.27
Diffstat (limited to 'net-irc/eggdrop/files')
-rw-r--r-- | net-irc/eggdrop/files/eggdrop-1.6.21-fix-memset.patch | 11 |
1 files changed, 11 insertions, 0 deletions
diff --git a/net-irc/eggdrop/files/eggdrop-1.6.21-fix-memset.patch b/net-irc/eggdrop/files/eggdrop-1.6.21-fix-memset.patch new file mode 100644 index 000000000000..f4d60f322dac --- /dev/null +++ b/net-irc/eggdrop/files/eggdrop-1.6.21-fix-memset.patch @@ -0,0 +1,11 @@ +diff --git a/src/md5/md5c.c b/src/md5/md5c.c +index 4dce058..cfdf97c 100644 +--- a/src/md5/md5c.c ++++ b/src/md5/md5c.c +@@ -267,5 +267,5 @@ void MD5_Final(unsigned char *result, MD5_CTX *ctx) + result[14] = ctx->d >> 16; + result[15] = ctx->d >> 24; + +- egg_memset(ctx, 0, sizeof(ctx)); ++ egg_memset(ctx, 0, sizeof(*ctx)); + } |