diff options
author | pav <pav@FreeBSD.org> | 2004-12-14 21:23:23 +0000 |
---|---|---|
committer | pav <pav@FreeBSD.org> | 2004-12-14 21:23:23 +0000 |
commit | 9a46413efae4f5d255b980c943e3190e3293d3b5 (patch) | |
tree | 1bc82e99a8a6b367f807787e2dfd0dd78fb43c20 /comms | |
parent | acb6b295b3b8f53d0b7bfedd5b3612ae56c9cf5a (diff) | |
download | FreeBSD-ports-9a46413efae4f5d255b980c943e3190e3293d3b5.zip FreeBSD-ports-9a46413efae4f5d255b980c943e3190e3293d3b5.tar.gz |
- Update to 1.5.1
Diffstat (limited to 'comms')
-rw-r--r-- | comms/hcidump/Makefile | 2 | ||||
-rw-r--r-- | comms/hcidump/distinfo | 4 | ||||
-rw-r--r-- | comms/hcidump/files/patch-parser-sdp.c | 28 |
3 files changed, 3 insertions, 31 deletions
diff --git a/comms/hcidump/Makefile b/comms/hcidump/Makefile index 14012e3..5bd014e 100644 --- a/comms/hcidump/Makefile +++ b/comms/hcidump/Makefile @@ -6,7 +6,7 @@ # PORTNAME= hcidump -PORTVERSION= 1.5 +PORTVERSION= 1.5.1 CATEGORIES= comms sysutils MASTER_SITES= http://www.geocities.com/m_evmenkin/ diff --git a/comms/hcidump/distinfo b/comms/hcidump/distinfo index 574b9de..8adc607 100644 --- a/comms/hcidump/distinfo +++ b/comms/hcidump/distinfo @@ -1,2 +1,2 @@ -MD5 (hcidump-1.5.tar.gz) = 1fd74128cfc55a9b75032959bb9d90a0 -SIZE (hcidump-1.5.tar.gz) = 32351 +MD5 (hcidump-1.5.1.tar.gz) = 79ddf7f3a5fc2e165406fdb6c7f19a01 +SIZE (hcidump-1.5.1.tar.gz) = 32480 diff --git a/comms/hcidump/files/patch-parser-sdp.c b/comms/hcidump/files/patch-parser-sdp.c deleted file mode 100644 index d7988e2..0000000 --- a/comms/hcidump/files/patch-parser-sdp.c +++ /dev/null @@ -1,28 +0,0 @@ ---- parser/sdp.c.orig Sat Sep 13 01:38:11 2003 -+++ parser/sdp.c Tue Dec 14 21:59:15 2004 -@@ -31,6 +31,7 @@ - - #include <sys/types.h> - #include <netinet/in.h> -+#include <inttypes.h> - #include <stdio.h> - - #include "parser.h" -@@ -203,7 +204,7 @@ - break; - case 16:/* 128-bit */ - get_u128(frm, &val, &val2); -- printf(" 0x%llx 0x%llx", val2, val); -+ printf(" 0x%" PRIx64 "0x%" PRIx64, val2, val); - return; - default: /* syntax error */ - printf(" err"); -@@ -212,7 +213,7 @@ - return; - } - -- printf(" 0x%llx", val); -+ printf(" 0x%" PRIx64, val); - } - - static void print_uuid(int n, struct frame *frm) |