diff options
Diffstat (limited to 'textproc/rman/files/patch-rman.c')
-rw-r--r-- | textproc/rman/files/patch-rman.c | 26 |
1 files changed, 0 insertions, 26 deletions
diff --git a/textproc/rman/files/patch-rman.c b/textproc/rman/files/patch-rman.c deleted file mode 100644 index 475d96c63117..000000000000 --- a/textproc/rman/files/patch-rman.c +++ /dev/null @@ -1,26 +0,0 @@ -diff -c rman.c.orig rman.c ---- rman.c.orig Sun Mar 30 00:45:18 2003 -+++ rman.c Mon May 12 18:59:41 2003 -@@ -3729,11 +3729,15 @@ - q=strchr(p, ' ');
- if (q!=NULL) *q++='\0';
- strcpy(manName, p);
-- for (p=q; isspace(*p); p++) /*nada*/;
-- if (*p) {
-- q=strchr(p,' ');
-- if (q!=NULL) *q++='\0';
-- strcpy(manSect, p);
-+ if (q) {
-+ for (p=q; isspace(*p); p++) /*nada*/;
-+ if (*p) {
-+ q=strchr(p,' ');
-+ if (q!=NULL) *q++='\0';
-+ strcpy(manSect, p);
-+ }
-+ } else {
-+ strcpy(manSect, "?");
- }
- }
- sI=0;
- - |