- Fix wrong patch.

- Bump PORTREVISION

PR:		95410
Submitted by:	Stanislaw Halik <sthalik___tehran.lain.pl>
This commit is contained in:
Marcus Alves Grando 2006-04-14 01:51:08 +00:00
parent fcf1a97c1a
commit 2c28f83a52
Notes: svn2git 2021-03-31 03:12:20 +00:00
svn path=/head/; revision=159450
2 changed files with 2 additions and 1 deletions

View File

@ -7,6 +7,7 @@
PORTNAME= pinfo
PORTVERSION= 0.6.9
PORTREVISION= 1
CATEGORIES= misc
MASTER_SITES= http://alioth.debian.org/download.php/1502/

View File

@ -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';