aboutsummaryrefslogtreecommitdiffstats
path: root/misc
diff options
context:
space:
mode:
authormnag <mnag@FreeBSD.org>2006-04-14 09:51:08 +0800
committermnag <mnag@FreeBSD.org>2006-04-14 09:51:08 +0800
commitf5229842b9b0d7a62e564e10340301f4ccdc49d2 (patch)
treec0829a2f1081e915a675e1b1aab672deae298c98 /misc
parentdf8deab2f64e4c268312002cc5cd5bc54bffa7da (diff)
downloadfreebsd-ports-gnome-f5229842b9b0d7a62e564e10340301f4ccdc49d2.tar.gz
freebsd-ports-gnome-f5229842b9b0d7a62e564e10340301f4ccdc49d2.tar.zst
freebsd-ports-gnome-f5229842b9b0d7a62e564e10340301f4ccdc49d2.zip
- Fix wrong patch.
- Bump PORTREVISION PR: 95410 Submitted by: Stanislaw Halik <sthalik___tehran.lain.pl>
Diffstat (limited to 'misc')
-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';