aboutsummaryrefslogtreecommitdiff
path: root/misc/pinfo
diff options
context:
space:
mode:
authorMarcus Alves Grando <mnag@FreeBSD.org>2006-04-14 01:51:08 +0000
committerMarcus Alves Grando <mnag@FreeBSD.org>2006-04-14 01:51:08 +0000
commit2c28f83a52e6dec2449a2f749989576594aed05e (patch)
treedb750c0b0c6aa2f6e7613026508f5dd3f0d2e93e /misc/pinfo
parentfcf1a97c1a6829591d6669dc5191f5deefe4fb36 (diff)
downloadports-2c28f83a52e6dec2449a2f749989576594aed05e.tar.gz
ports-2c28f83a52e6dec2449a2f749989576594aed05e.zip
Notes
Diffstat (limited to 'misc/pinfo')
-rw-r--r--misc/pinfo/Makefile1
-rw-r--r--misc/pinfo/files/patch-src__utils.c2
2 files changed, 2 insertions, 1 deletions
diff --git a/misc/pinfo/Makefile b/misc/pinfo/Makefile
index ca0d0e9c5ead..7b658fe0b75a 100644
--- a/misc/pinfo/Makefile
+++ b/misc/pinfo/Makefile
@@ -7,6 +7,7 @@
PORTNAME= pinfo
PORTVERSION= 0.6.9
+PORTREVISION= 1
CATEGORIES= misc
MASTER_SITES= http://alioth.debian.org/download.php/1502/
diff --git a/misc/pinfo/files/patch-src__utils.c b/misc/pinfo/files/patch-src__utils.c
index 1d274afd9806..551475e7a2a6 100644
--- a/misc/pinfo/files/patch-src__utils.c
+++ b/misc/pinfo/files/patch-src__utils.c
@@ -35,7 +35,7 @@
str_start += strlen("Node: ");
/* and search for the next comma, tab, or newline */
- char *c = str_start;
-+ *c = str_start;
++ c = str_start;
while ( (*c!=',') && (*c!='\t') && (*c!='\n') && (*c!='\0') ) c++;
*c = '\0';