Source-Changes-HG archive

[Date Prev][Date Next][Thread Prev][Thread Next][Date Index][Thread Index][Old Index]

[src/netbsd-1-6]: src/sys/kern Pull up revision 1.80 (requested by tv in tick...



details:   https://anonhg.NetBSD.org/src/rev/ea342b78ab23
branches:  netbsd-1-6
changeset: 530597:ea342b78ab23
user:      tron <tron%NetBSD.org@localhost>
date:      Sun Aug 17 13:40:52 2003 +0000

description:
Pull up revision 1.80 (requested by tv in ticket #1424):
grow #! line length -- patch from cgd, fixes PR kern/20112 from Todd Vierling

diffstat:

 sys/kern/exec_conf.c |  6 +++---
 1 files changed, 3 insertions(+), 3 deletions(-)

diffs (27 lines):

diff -r b48f8ca3b95a -r ea342b78ab23 sys/kern/exec_conf.c
--- a/sys/kern/exec_conf.c      Sun Aug 17 12:00:03 2003 +0000
+++ b/sys/kern/exec_conf.c      Sun Aug 17 13:40:52 2003 +0000
@@ -1,4 +1,4 @@
-/*     $NetBSD: exec_conf.c,v 1.72 2002/04/02 23:56:17 rafal Exp $     */
+/*     $NetBSD: exec_conf.c,v 1.72.4.1 2003/08/17 13:40:52 tron Exp $  */
 
 /*
  * Copyright (c) 1993, 1994 Christopher G. Demetriou
@@ -31,7 +31,7 @@
  */
 
 #include <sys/cdefs.h>
-__KERNEL_RCSID(0, "$NetBSD: exec_conf.c,v 1.72 2002/04/02 23:56:17 rafal Exp $");
+__KERNEL_RCSID(0, "$NetBSD: exec_conf.c,v 1.72.4.1 2003/08/17 13:40:52 tron Exp $");
 
 #include "opt_execfmt.h"
 #include "opt_compat_freebsd.h"
@@ -184,7 +184,7 @@
 const struct execsw execsw_builtin[] = {
 #ifdef EXEC_SCRIPT
        /* Shell scripts */
-       { MAXINTERP,
+       { SCRIPT_HDR_SIZE,
          exec_script_makecmds,
          { NULL },
          NULL,



Home | Main Index | Thread Index | Old Index