1
0
mirror of https://git.FreeBSD.org/ports.git synced 2025-02-07 11:49:40 +00:00

Update to 1.10.3. See

http://www.wireshark.org/docs/relnotes/wireshark-1.10.3.html for a list
of changes in this release.
This commit is contained in:
Joe Marcus Clarke 2013-11-11 15:26:58 +00:00
parent 8b429fae78
commit 19c5bf299d
Notes: svn2git 2021-03-31 03:12:20 +00:00
svn path=/head/; revision=333512
4 changed files with 3 additions and 60 deletions

View File

@ -2,7 +2,7 @@
# $FreeBSD$
PORTNAME?= wireshark
PORTVERSION= 1.10.2
PORTVERSION= 1.10.3
CATEGORIES= net ipv6
MASTER_SITES= http://www.wireshark.org/download/src/ \
http://ftp.uni-kl.de/pub/wireshark/src/ \

View File

@ -1,2 +1,2 @@
SHA256 (wireshark-1.10.2.tar.bz2) = b7a83314424e13639c591de924aa240bc5f3d9cae01dde69bf858fa04b22a33d
SIZE (wireshark-1.10.2.tar.bz2) = 26667284
SHA256 (wireshark-1.10.3.tar.bz2) = c1641b36aeb0ca2c1a95fb01d2c647888b65e00a215c9a6464b5fc61e0fd498c
SIZE (wireshark-1.10.3.tar.bz2) = 26672853

View File

@ -1,30 +0,0 @@
--- epan/dissectors/packet-gluster.h.orig 2013-04-22 14:05:17.000000000 -0400
+++ epan/dissectors/packet-gluster.h 2013-10-12 13:14:25.000000000 -0400
@@ -356,18 +356,17 @@ enum gf_fop_procnum {
/* dir-entry types from libglusterfs/src/compat.h */
enum gluster_entry_types {
- DT_UNKNOWN = 0,
- DT_FIFO = 1,
- DT_CHR = 2,
- DT_DIR = 4,
- DT_BLK = 6,
- DT_REG = 8,
- DT_LNK = 10,
- DT_SOCK = 12,
- DT_WHT = 14
+ GLFS_DT_UNKNOWN = 0,
+ GLFS_DT_FIFO = 1,
+ GLFS_DT_CHR = 2,
+ GLFS_DT_DIR = 4,
+ GLFS_DT_BLK = 6,
+ GLFS_DT_REG = 8,
+ GLFS_DT_LNK = 10,
+ GLFS_DT_SOCK = 12,
+ GLFS_DT_WHT = 14
};
-
/* LOCKING operators come from libglusterfs/src/glusterfs.h */
/* based on original enum glusterfs_lk_cmds_t */

View File

@ -1,27 +0,0 @@
--- epan/dissectors/packet-glusterfs.c.orig 2013-04-22 14:05:16.000000000 -0400
+++ epan/dissectors/packet-glusterfs.c 2013-10-12 13:18:58.000000000 -0400
@@ -2002,15 +2002,15 @@ static value_string_ext glusterfs3_1_fop
/* dir-entry types */
static const value_string glusterfs_entry_type_names[] = {
- { DT_UNKNOWN, "DT_UNKNOWN" },
- { DT_FIFO, "DT_FIFO" },
- { DT_CHR, "DT_CHR" },
- { DT_DIR, "DT_DIR" },
- { DT_BLK, "DT_BLK" },
- { DT_REG, "DT_REG" },
- { DT_LNK, "DT_LNK" },
- { DT_SOCK, "DT_SOCK" },
- { DT_WHT, "DT_WHT" },
+ { GLFS_DT_UNKNOWN, "DT_UNKNOWN" },
+ { GLFS_DT_FIFO, "DT_FIFO" },
+ { GLFS_DT_CHR, "DT_CHR" },
+ { GLFS_DT_DIR, "DT_DIR" },
+ { GLFS_DT_BLK, "DT_BLK" },
+ { GLFS_DT_REG, "DT_REG" },
+ { GLFS_DT_LNK, "DT_LNK" },
+ { GLFS_DT_SOCK, "DT_SOCK" },
+ { GLFS_DT_WHT, "DT_WHT" },
{ 0, NULL }
};
static value_string_ext glusterfs_entry_type_names_ext = VALUE_STRING_EXT_INIT(glusterfs_entry_type_names);