Module Name:    src
Committed By:   pgoyette
Date:           Mon Mar 23 02:44:22 UTC 2020

Modified Files:
        src/sys/kern: exec_script.c

Log Message:
Fix typo in comment.


To generate a diff of this commit:
cvs rdiff -u -r1.81 -r1.82 src/sys/kern/exec_script.c

Please note that diffs are not public domain; they are subject to the
copyright notices on the relevant files.

Modified files:

Index: src/sys/kern/exec_script.c
diff -u src/sys/kern/exec_script.c:1.81 src/sys/kern/exec_script.c:1.82
--- src/sys/kern/exec_script.c:1.81	Mon Mar 23 00:46:11 2020
+++ src/sys/kern/exec_script.c	Mon Mar 23 02:44:22 2020
@@ -1,4 +1,4 @@
-/*	$NetBSD: exec_script.c,v 1.81 2020/03/23 00:46:11 ad Exp $	*/
+/*	$NetBSD: exec_script.c,v 1.82 2020/03/23 02:44:22 pgoyette Exp $	*/
 
 /*
  * Copyright (c) 1993, 1994, 1996 Christopher G. Demetriou
@@ -31,7 +31,7 @@
  */
 
 #include <sys/cdefs.h>
-__KERNEL_RCSID(0, "$NetBSD: exec_script.c,v 1.81 2020/03/23 00:46:11 ad Exp $");
+__KERNEL_RCSID(0, "$NetBSD: exec_script.c,v 1.82 2020/03/23 02:44:22 pgoyette Exp $");
 
 #ifdef _KERNEL_OPT
 #include "opt_script.h"
@@ -213,7 +213,7 @@ check_shell:
 	 * if the script isn't readable, or it's set-id, then we've
 	 * gotta supply a "/dev/fd/..." for the shell to read.
 	 * Note that stupid shells (csh) do the wrong thing, and
-	 * close all open fd's when the start.  That kills this
+	 * close all open fd's when they start.  That kills this
 	 * method of implementing "safe" set-id and x-only scripts.
 	 */
 	vn_lock(epp->ep_vp, LK_SHARED | LK_RETRY);

Reply via email to