• test on HURD (gnubber)

• fix unreachable code (break stmt) cought by suncc on yofuh's E420
• bump vsn to today
This commit is contained in:
tg 2007-07-26 13:23:52 +00:00
parent 7374f12176
commit 3718a00106
3 changed files with 6 additions and 6 deletions

View File

@ -1,4 +1,4 @@
# $MirOS: src/bin/mksh/check.t,v 1.130 2007/07/24 11:22:03 tg Exp $
# $MirOS: src/bin/mksh/check.t,v 1.131 2007/07/26 13:23:51 tg Exp $
# $OpenBSD: bksl-nl.t,v 1.2 2001/01/28 23:04:56 niklas Exp $
# $OpenBSD: history.t,v 1.5 2001/01/28 23:04:56 niklas Exp $
# $OpenBSD: read.t,v 1.3 2003/03/10 03:48:16 david Exp $
@ -7,7 +7,7 @@
# http://www.research.att.com/~gsf/public/ifs.sh
expected-stdout:
@(#)MIRBSD KSH R30 2007/07/24
@(#)MIRBSD KSH R30 2007/07/26
description:
Check version of shell.
category: pdksh

4
misc.c
View File

@ -6,7 +6,7 @@
#include <grp.h>
#endif
__RCSID("$MirOS: src/bin/mksh/misc.c,v 1.63 2007/07/22 14:01:49 tg Exp $\t"
__RCSID("$MirOS: src/bin/mksh/misc.c,v 1.64 2007/07/26 13:23:51 tg Exp $\t"
MKSH_SH_H_ID);
#undef USE_CHVT
@ -382,8 +382,8 @@ parse_args(const char **argv,
#else
change_flag(FTALKING, OF_CMDLINE, 1);
chvt(go.optarg);
#endif
break;
#endif
#endif
case '?':

4
sh.h
View File

@ -8,8 +8,8 @@
/* $OpenBSD: c_test.h,v 1.4 2004/12/20 11:34:26 otto Exp $ */
/* $OpenBSD: tty.h,v 1.5 2004/12/20 11:34:26 otto Exp $ */
#define MKSH_SH_H_ID "$MirOS: src/bin/mksh/sh.h,v 1.164 2007/07/24 21:47:14 tg Exp $"
#define MKSH_VERSION "R30 2007/07/24"
#define MKSH_SH_H_ID "$MirOS: src/bin/mksh/sh.h,v 1.165 2007/07/26 13:23:52 tg Exp $"
#define MKSH_VERSION "R30 2007/07/26"
#if HAVE_SYS_PARAM_H
#include <sys/param.h>