From owner-cvs-all@FreeBSD.ORG Fri Feb 25 11:49:43 2005 Return-Path: Delivered-To: cvs-all@freebsd.org Received: from mx1.FreeBSD.org (mx1.freebsd.org [216.136.204.125]) by hub.freebsd.org (Postfix) with ESMTP id 0A1A016A4CE; Fri, 25 Feb 2005 11:49:43 +0000 (GMT) Received: from repoman.freebsd.org (repoman.freebsd.org [216.136.204.115]) by mx1.FreeBSD.org (Postfix) with ESMTP id E8B8843D2F; Fri, 25 Feb 2005 11:49:42 +0000 (GMT) (envelope-from sobomax@FreeBSD.org) Received: from repoman.freebsd.org (localhost [127.0.0.1]) by repoman.freebsd.org (8.13.1/8.13.1) with ESMTP id j1PBngPX055440; Fri, 25 Feb 2005 11:49:42 GMT (envelope-from sobomax@repoman.freebsd.org) Received: (from sobomax@localhost) by repoman.freebsd.org (8.13.1/8.13.1/Submit) id j1PBngE5055439; Fri, 25 Feb 2005 11:49:42 GMT (envelope-from sobomax) Message-Id: <200502251149.j1PBngE5055439@repoman.freebsd.org> From: Maxim Sobolev Date: Fri, 25 Feb 2005 11:49:42 +0000 (UTC) To: src-committers@FreeBSD.org, cvs-src@FreeBSD.org, cvs-all@FreeBSD.org X-FreeBSD-CVS-Branch: HEAD Subject: cvs commit: src UPDATING src/sys/kern kern_exec.c src/sys/sys imgact.h X-BeenThere: cvs-all@freebsd.org X-Mailman-Version: 2.1.1 Precedence: list List-Id: CVS commit messages for the entire tree List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Fri, 25 Feb 2005 11:49:43 -0000 sobomax 2005-02-25 11:49:42 UTC FreeBSD src repository Modified files: . UPDATING sys/kern kern_exec.c sys/sys imgact.h Log: Welcome to the 21st century: increase MAXSHELLCMDLEN from 128 bytes to PAGE_SIZE. Unlike originator of the PR suggests retain MAXSHELLCMDLEN definition (he has been proposing to replace it with PAGE_SIZE everywhere), not only this reduced the diff significantly, but prevents code obfuscation and also allows to increase/decrease this parameter easily if needed. PR: kern/64196 Submitted by: Magnus Bäckström Revision Changes Path 1.394 +5 -0 src/UPDATING 1.266 +9 -5 src/sys/kern/kern_exec.c 1.38 +2 -2 src/sys/sys/imgact.h