Module Name: src
Committed By: christos
Date: Tue Feb 23 18:30:16 UTC 2016
Modified Files:
src/bin/sh: options.h
Log Message:
name the long option after the ksh name (trackall) to indicate the intended
posix behavior not the bash one.
To generate a diff of this commit:
cvs rdiff -u -r1.23 -r1.24 src/bin/sh/options.h
Please note that diffs are not public domain; they are subject to the
copyright notices on the relevant files.
Modified files:
Index: src/bin/sh/options.h
diff -u src/bin/sh/options.h:1.23 src/bin/sh/options.h:1.24
--- src/bin/sh/options.h:1.23 Tue Feb 23 11:22:43 2016
+++ src/bin/sh/options.h Tue Feb 23 13:30:16 2016
@@ -1,4 +1,4 @@
-/* $NetBSD: options.h,v 1.23 2016/02/23 16:22:43 christos Exp $ */
+/* $NetBSD: options.h,v 1.24 2016/02/23 18:30:16 christos Exp $ */
/*-
* Copyright (c) 1991, 1993
@@ -103,7 +103,7 @@ DEF_OPT( "fork", 'F' ) /* use fork(2) in
#define usefork optlist[19].val
DEF_OPT( "nopriv", 'p' ) /* preserve privs even if set{u,g}id */
#define pflag optlist[20].val
-DEF_OPT( "hashall", 'h' ) /* [U] locate cmds in funcs when defined */
+DEF_OPT( "trackall", 'h' ) /* [U] locate cmds in funcs when defined */
#define hflag optlist[21].val
#ifdef DEBUG
DEF_OPT( "debug", 0 ) /* enable debug prints */