summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorDaniel Black <dragonheart@gentoo.org>2005-10-19 22:19:35 +0000
committerDaniel Black <dragonheart@gentoo.org>2005-10-19 22:19:35 +0000
commitb0ab2e2b65d4c8c8cd0e15f31ebdae4d8f92da34 (patch)
treed4aa63b35e474db77824c0d9a0f79c43ac22ad48 /net-analyzer/ethereal/files
parent~net-analyser/ethereal-0.10.13 - need to check reading from pcap file - suspe... (diff)
downloadhistorical-b0ab2e2b65d4c8c8cd0e15f31ebdae4d8f92da34.tar.gz
historical-b0ab2e2b65d4c8c8cd0e15f31ebdae4d8f92da34.tar.bz2
historical-b0ab2e2b65d4c8c8cd0e15f31ebdae4d8f92da34.zip
version bump - bug #109348
Package-Manager: portage-2.0.53_rc3
Diffstat (limited to 'net-analyzer/ethereal/files')
-rw-r--r--net-analyzer/ethereal/files/digest-ethereal-0.10.131
-rw-r--r--net-analyzer/ethereal/files/fifo.patch27
2 files changed, 1 insertions, 27 deletions
diff --git a/net-analyzer/ethereal/files/digest-ethereal-0.10.13 b/net-analyzer/ethereal/files/digest-ethereal-0.10.13
new file mode 100644
index 000000000000..5048d2238514
--- /dev/null
+++ b/net-analyzer/ethereal/files/digest-ethereal-0.10.13
@@ -0,0 +1 @@
+MD5 9998cb4907a70925d33292bae89530d4 ethereal-0.10.13.tar.gz 10213459
diff --git a/net-analyzer/ethereal/files/fifo.patch b/net-analyzer/ethereal/files/fifo.patch
deleted file mode 100644
index a7ec4937409c..000000000000
--- a/net-analyzer/ethereal/files/fifo.patch
+++ /dev/null
@@ -1,27 +0,0 @@
---- capture_loop.c 2005-07-16 14:44:28.000000000 +0300
-+++ capture_loop.c 2005-07-16 14:31:19.000000000 +0300
-@@ -157,6 +157,7 @@
- gboolean from_cap_pipe; /* TRUE if we are capturing data from a capture pipe */
- #ifndef _WIN32
- struct pcap_hdr cap_pipe_hdr;
-+ struct pcaprec_modified_hdr cap_pipe_rechdr;
- int cap_pipe_fd; /* the file descriptor of the capture pipe */
- gboolean cap_pipe_modified; /* TRUE if data in the pipe uses modified pcap headers */
- gboolean cap_pipe_byte_swapped; /* TRUE if data in the pipe is byte swapped */
-@@ -889,7 +890,6 @@
- fd_set set1;
- struct timeval timeout;
- int sel_ret;
-- struct pcaprec_modified_hdr rechdr;
- guchar pcap_data[WTAP_MAX_PACKET_SIZE];
- #endif
-
-@@ -916,7 +916,7 @@
- /*
- * "select()" says we can read from the pipe without blocking
- */
-- inpkts = cap_pipe_dispatch(ld->cap_pipe_fd, ld, &ld->cap_pipe_hdr, &rechdr, pcap_data,
-+ inpkts = cap_pipe_dispatch(ld->cap_pipe_fd, ld, &ld->cap_pipe_hdr, &ld->cap_pipe_rechdr, pcap_data,
- errmsg, errmsg_len);
- if (inpkts < 0) {
- ld->go = FALSE;