diff options
author | steve <steve@FreeBSD.org> | 1999-09-20 02:17:43 +0000 |
---|---|---|
committer | steve <steve@FreeBSD.org> | 1999-09-20 02:17:43 +0000 |
commit | c9a6aea160795be32319b2aea4b7a02ee395bb2c (patch) | |
tree | a98d1316f7122df1a6771645b703cfba0f18e3bc /misc/mshell | |
parent | 6525660cd437ba70fb369115c9db660f70e57e1f (diff) | |
download | FreeBSD-ports-c9a6aea160795be32319b2aea4b7a02ee395bb2c.zip FreeBSD-ports-c9a6aea160795be32319b2aea4b7a02ee395bb2c.tar.gz |
Make this compile again on -current and Alpha again.
Diffstat (limited to 'misc/mshell')
-rw-r--r-- | misc/mshell/files/patch-ad | 59 |
1 files changed, 56 insertions, 3 deletions
diff --git a/misc/mshell/files/patch-ad b/misc/mshell/files/patch-ad index 03131f1..de74911 100644 --- a/misc/mshell/files/patch-ad +++ b/misc/mshell/files/patch-ad @@ -1,5 +1,58 @@ -*** mshell.c.orig Sat Sep 24 00:51:51 1994 ---- mshell.c Sat Sep 24 00:52:20 1994 +*** mshell.c.orig Sun Sep 19 11:00:53 1999 +--- mshell.c Sun Sep 19 11:09:05 1999 +*************** +*** 26,33 **** + exec_string [DESCLEN], + *args [MAXARGS], + *menu_array [LINES], +! tmpword [WORDLEN], +! *malloc(); + + int i, + idx, +--- 26,32 ---- + exec_string [DESCLEN], + *args [MAXARGS], + *menu_array [LINES], +! tmpword [WORDLEN]; + + int i, + idx, +*************** +*** 35,42 **** + firsttime = TRUE, + dontdisplay = FALSE, + unix_flag, +! menu_flag, +! exit(); + + static jmp_buf topenv; + static int topenvset; +--- 34,40 ---- + firsttime = TRUE, + dontdisplay = FALSE, + unix_flag, +! menu_flag; + + static jmp_buf topenv; + static int topenvset; +*************** +*** 49,55 **** + signal (SIGPIPE, SIG_IGN); /* ignore dead pipes */ + log("enter", m); + +! while TRUE { + + if (!topenvset) { + topenvset = TRUE; +--- 47,53 ---- + signal (SIGPIPE, SIG_IGN); /* ignore dead pipes */ + log("enter", m); + +! while (TRUE) { + + if (!topenvset) { + topenvset = TRUE; *************** *** 142,148 **** @@ -9,7 +62,7 @@ } else { tmpword[0] = EOS; ---- 142,148 ---- +--- 140,146 ---- if ( strcmp (action_string, NULLSTR) == 0 ) { invalid_option = TRUE; |