summaryrefslogtreecommitdiffstats
path: root/network/driftnet/driftnet.patch
diff options
context:
space:
mode:
author Brenton Earl <brent@exitstatusone.com>2017-05-04 10:09:18 +0700
committer Willy Sudiarto Raharjo <willysr@slackbuilds.org>2017-05-04 10:09:18 +0700
commit3c0a2930fc83c83bd873de3da272625c126a37e7 (patch)
tree26f017a4f0f8996ea6f24ca6cafeb3c826b9f416 /network/driftnet/driftnet.patch
parent5f802c13d1ccc8610d88ce25ebf05eff7ea1375a (diff)
downloadslackbuilds-3c0a2930fc83c83bd873de3da272625c126a37e7.tar.gz
slackbuilds-3c0a2930fc83c83bd873de3da272625c126a37e7.tar.xz
network/driftnet: Updated for version 1.1.5, new maintainer.
Signed-off-by: Willy Sudiarto Raharjo <willysr@slackbuilds.org>
Diffstat (limited to '')
-rw-r--r--network/driftnet/driftnet.patch29
1 files changed, 0 insertions, 29 deletions
diff --git a/network/driftnet/driftnet.patch b/network/driftnet/driftnet.patch
deleted file mode 100644
index 166c75bc2f..0000000000
--- a/network/driftnet/driftnet.patch
+++ /dev/null
@@ -1,29 +0,0 @@
---- driftnet-0.1.6_p20090401/gif.c.old 2016-01-04 23:08:50.734142148 +0700
-+++ driftnet-0.1.6_p20090401/gif.c 2016-01-04 23:11:58.759931300 +0700
-@@ -20,7 +20,7 @@
- */
- int gif_load_hdr(img I) {
- GifFileType *g;
-- g = I->us = DGifOpenFileHandle(fileno(I->fp));
-+ g = I->us = DGifOpenFileHandle(fileno(I->fp), NULL);
- if (!I->us) {
- I->err = IE_HDRFORMAT;
- return 0;
-@@ -36,7 +36,7 @@
- * Abort loading a GIF file after the header is done.
- */
- int gif_abort_load(img I) {
-- DGifCloseFile((GifFileType*)I->us);
-+ DGifCloseFile((GifFileType*)I->us, NULL);
- return 1;
- }
-
-@@ -114,7 +114,7 @@
- ret = 1;
- fail:
-
-- DGifCloseFile(g);
-+ DGifCloseFile(g, NULL);
-
- return ret;
- }