Fix a bug in string handling in rman.

Submitted by:	marcel
This commit is contained in:
Eric Anholt 2003-07-16 20:45:02 +00:00
parent c340e87d5b
commit 7ff8996243
Notes: svn2git 2021-03-31 03:12:20 +00:00
svn path=/head/; revision=85003
2 changed files with 13 additions and 0 deletions

View File

@ -7,6 +7,7 @@
PORTNAME= imake
PORTVERSION= 4.3.0
PORTREVISION= 1
CATEGORIES= devel
MASTER_SITES= ${MASTER_SITE_XFREE}
MASTER_SITE_SUBDIR= ${PORTVERSION}

View File

@ -0,0 +1,12 @@
--- ../extras/rman/rman.c.orig Tue Jul 15 23:53:53 2003
+++ ../extras/rman/rman.c Tue Jul 15 23:44:21 2003
@@ -4104,6 +4104,9 @@
}
}
break;
+ case 0:
+ /* ignore */
+ break;
default: /* unknown escaped character */
sputchar(*p++);
}