Module Name:    src
Committed By:   kamil
Date:           Mon Nov 26 20:03:40 UTC 2018

Modified Files:
        src/bin/sh: redir.c

Log Message:
Fix typo: O_ALTIO -> O_ALT_IO

Noted by @jbeich via GitHub.


To generate a diff of this commit:
cvs rdiff -u -r1.61 -r1.62 src/bin/sh/redir.c

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/redir.c
diff -u src/bin/sh/redir.c:1.61 src/bin/sh/redir.c:1.62
--- src/bin/sh/redir.c:1.61	Fri Nov 23 23:41:20 2018
+++ src/bin/sh/redir.c	Mon Nov 26 20:03:39 2018
@@ -1,4 +1,4 @@
-/*	$NetBSD: redir.c,v 1.61 2018/11/23 23:41:20 kre Exp $	*/
+/*	$NetBSD: redir.c,v 1.62 2018/11/26 20:03:39 kamil Exp $	*/
 
 /*-
  * Copyright (c) 1991, 1993
@@ -37,7 +37,7 @@
 #if 0
 static char sccsid[] = "@(#)redir.c	8.2 (Berkeley) 5/4/95";
 #else
-__RCSID("$NetBSD: redir.c,v 1.61 2018/11/23 23:41:20 kre Exp $");
+__RCSID("$NetBSD: redir.c,v 1.62 2018/11/26 20:03:39 kamil Exp $");
 #endif
 #endif /* not lint */
 
@@ -721,7 +721,7 @@ static const struct flgnames {
 #ifdef O_RSYNC
 	{ "rsync",	2,	O_RSYNC		},
 #endif
-#ifdef O_ALTIO
+#ifdef O_ALT_IO
 	{ "altio",	2,	O_ALT_IO	},
 #endif
 #ifdef O_DIRECT

Reply via email to