diff options
author | Baptiste Daroussin <bapt@FreeBSD.org> | 2014-09-01 21:38:59 +0000 |
---|---|---|
committer | Baptiste Daroussin <bapt@FreeBSD.org> | 2014-09-01 21:38:59 +0000 |
commit | beced671bdcb6ffe50e652d814ac803ba36386d8 (patch) | |
tree | 88eb9dbb4fc80b7d159c64e16db129bdd9b80aed /misc/mshell/files/patch-ad | |
parent | Add the current SUSv4/Open Group Base Specifications Issue 7. (diff) |
Remove non staged ports without pending PR from m*
Notes
Notes:
svn path=/head/; revision=366962
Diffstat (limited to 'misc/mshell/files/patch-ad')
-rw-r--r-- | misc/mshell/files/patch-ad | 76 |
1 files changed, 0 insertions, 76 deletions
diff --git a/misc/mshell/files/patch-ad b/misc/mshell/files/patch-ad deleted file mode 100644 index 039b86499198..000000000000 --- a/misc/mshell/files/patch-ad +++ /dev/null @@ -1,76 +0,0 @@ ---- mshell.c.orig Sun Oct 20 16:13:17 2002 -+++ mshell.c Sun Oct 20 16:13:45 2002 -@@ -1,5 +1,6 @@ - #include "mshell.h" - #include <setjmp.h> -+#include <stdlib.h> - char * index (); - - -@@ -26,8 +27,7 @@ - exec_string [DESCLEN], - *args [MAXARGS], - *menu_array [LINES], -- tmpword [WORDLEN], -- *malloc(); -+ tmpword [WORDLEN]; - - int i, - idx, -@@ -35,8 +35,7 @@ - firsttime = TRUE, - dontdisplay = FALSE, - unix_flag, -- menu_flag, -- exit(); -+ menu_flag; - - static jmp_buf topenv; - static int topenvset; -@@ -49,7 +48,7 @@ - signal (SIGPIPE, SIG_IGN); /* ignore dead pipes */ - log("enter", m); - -- while TRUE { -+ while (TRUE) { - - if (!topenvset) { - topenvset = TRUE; -@@ -142,7 +141,7 @@ - - if ( strcmp (action_string, NULLSTR) == 0 ) { - invalid_option = TRUE; -- printf ("\tNo such help option name as: %s\!\!\n", opt2); -+ printf ("\tNo such help option name as: %s!!\n", opt2); - } - 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) { |