aboutsummaryrefslogtreecommitdiff
path: root/comms
diff options
context:
space:
mode:
authorPav Lucistnik <pav@FreeBSD.org>2004-12-14 21:23:23 +0000
committerPav Lucistnik <pav@FreeBSD.org>2004-12-14 21:23:23 +0000
commit1030335d037a104e7c9b61a8ad831800c9a613ac (patch)
tree56ab5f857ab2215da8c28157028ea74a2e90f6f6 /comms
parentfc9b9d1c25e0d2ec446659debdbca81e80a0b6e0 (diff)
downloadports-1030335d037a104e7c9b61a8ad831800c9a613ac.tar.gz
ports-1030335d037a104e7c9b61a8ad831800c9a613ac.zip
Notes
Diffstat (limited to 'comms')
-rw-r--r--comms/hcidump/Makefile2
-rw-r--r--comms/hcidump/distinfo4
-rw-r--r--comms/hcidump/files/patch-parser-sdp.c28
3 files changed, 3 insertions, 31 deletions
diff --git a/comms/hcidump/Makefile b/comms/hcidump/Makefile
index 14012e37e956..5bd014e94218 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 574b9deecaf9..8adc607bdbf6 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 d7988e250f51..000000000000
--- 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)