diff options
author | Jean-Marc Zucconi <jmz@FreeBSD.org> | 2003-08-19 14:52:46 +0000 |
---|---|---|
committer | Jean-Marc Zucconi <jmz@FreeBSD.org> | 2003-08-19 14:52:46 +0000 |
commit | 65fb34198374803252a888c4107c4b75e7e1d764 (patch) | |
tree | 7da725630b2de1ffe6ed9e02fe581565804ee879 /misc/mshell/files/patch-ad | |
parent | Unbreak on CURRENT (diff) |
Unbreak build on -current.
Notes
Notes:
svn path=/head/; revision=87295
Diffstat (limited to 'misc/mshell/files/patch-ad')
-rw-r--r-- | misc/mshell/files/patch-ad | 29 |
1 files changed, 29 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) { |