summaryrefslogtreecommitdiff
path: root/mail/mh/files/patch-ac
diff options
context:
space:
mode:
authorcvs2svn <cvs2svn@FreeBSD.org>1995-05-29 13:46:40 +0000
committercvs2svn <cvs2svn@FreeBSD.org>1995-05-29 13:46:40 +0000
commit0d98f1227110082e9e507ca236458f6c363e25b6 (patch)
tree297f74782436a0f973b6b89d60c10f399af9a135 /mail/mh/files/patch-ac
parentRemove comment about not being able to undefine a variable, as we *can* (diff)
This commit was manufactured by cvs2svn to create tag 'RELENG_2_0_5_ALPHA'.release/2.0.5a
Diffstat (limited to 'mail/mh/files/patch-ac')
-rw-r--r--mail/mh/files/patch-ac50
1 files changed, 0 insertions, 50 deletions
diff --git a/mail/mh/files/patch-ac b/mail/mh/files/patch-ac
deleted file mode 100644
index 65730405c162..000000000000
--- a/mail/mh/files/patch-ac
+++ /dev/null
@@ -1,50 +0,0 @@
-*** slocal.c.orig Tue Nov 30 20:01:38 1993
---- uip/slocal.c Fri Jul 1 13:09:36 1994
-***************
-*** 173,178 ****
---- 173,180 ----
- NULL
- };
-
-+ static char *rcvstore;
-+
- /* */
-
- extern char **environ;
-***************
-*** 299,304 ****
---- 301,308 ----
-
- /* */
-
-+ rcvstore = getcpy(libpath("rcvstore"));
-+
- if (addr == NULL)
- addr = getusr ();
- if (user == NULL)
-***************
-*** 543,549 ****
---- 547,569 ----
- status = usr_pipe (fd, tmpbuf, "/bin/sh", vec + 2);
- break;
-
-+ case '+':
-+ dofolder:
-+ if (*string == '+')
-+ strcpy(tmpbuf, string);
-+ else
-+ sprintf(tmpbuf, "+%s", string);
-+ vec[2] = "rcvstore";
-+ vec[3] = tmpbuf;
-+ vec[4] = NULL;
-+ if (verbose)
-+ printf("rcvstore %s", vec[3]);
-+ status = usr_pipe(fd, "rcvstore", rcvstore, vec + 2);
-+ break;
-+
- case 'f':
-+ if (uleq(action, "folder"))
-+ goto dofolder;
- if (!uleq (action, "file"))
- continue; /* else fall */
- case '>':