aboutsummaryrefslogtreecommitdiff
path: root/misc/mshell
diff options
context:
space:
mode:
authorJean-Marc Zucconi <jmz@FreeBSD.org>2003-08-19 14:52:46 +0000
committerJean-Marc Zucconi <jmz@FreeBSD.org>2003-08-19 14:52:46 +0000
commit65fb34198374803252a888c4107c4b75e7e1d764 (patch)
tree7da725630b2de1ffe6ed9e02fe581565804ee879 /misc/mshell
parentb209b0fc3fda3fc05c92da7944bd56c6255c1dbb (diff)
downloadports-65fb34198374803252a888c4107c4b75e7e1d764.tar.gz
ports-65fb34198374803252a888c4107c4b75e7e1d764.zip
Notes
Diffstat (limited to 'misc/mshell')
-rw-r--r--misc/mshell/files/patch-ad29
-rw-r--r--misc/mshell/files/patch-ai11
2 files changed, 40 insertions, 0 deletions
diff --git a/misc/mshell/files/patch-ad b/misc/mshell/files/patch-ad
index 35815355ded8..039b86499198 100644
--- a/misc/mshell/files/patch-ad
+++ b/misc/mshell/files/patch-ad
@@ -45,3 +45,32 @@
}
else {
tmpword[0] = EOS;
+--- mshell.c~ Tue Aug 19 16:42:36 2003
++++ mshell.c Tue Aug 19 16:47:53 2003
+@@ -46,7 +46,7 @@
+ signal (SIGQUIT, SIG_IGN); /* ignore all ^\ interrupts */
+ signal (SIGTSTP, SIG_IGN); /* ignore all ^Z interrupts */
+ signal (SIGPIPE, SIG_IGN); /* ignore dead pipes */
+- log("enter", m);
++ Log("enter", m);
+
+ while (TRUE) {
+
+@@ -85,7 +85,7 @@
+ printf ("\tSelect choice [or help, x, top, bye]: ");
+ opt[0] = 0;
+ read_input_line (opt);
+- log(" ", opt);
++ Log(" ", opt);
+ invalid_option = FALSE;
+ putchar('\n');
+
+@@ -170,7 +170,7 @@
+ for (i = 0; i < LINES; i++)
+ if (menu_array[i])
+ free(menu_array[i]);
+- log("exit", m);
++ Log("exit", m);
+ return;
+ }
+ else if (strcmp(opt, "T") == 0 || strcmp(opt, "top") == 0) {
diff --git a/misc/mshell/files/patch-ai b/misc/mshell/files/patch-ai
new file mode 100644
index 000000000000..b90852b36547
--- /dev/null
+++ b/misc/mshell/files/patch-ai
@@ -0,0 +1,11 @@
+--- main.c~ Tue Aug 19 16:42:36 2003
++++ main.c Tue Aug 19 16:46:48 2003
+@@ -98,7 +98,7 @@
+ chmod(fn, 0600);
+ }
+
+-log(s1, s2)
++Log(s1, s2)
+ char *s1, *s2;
+ {
+ if (logfp)