From owner-svn-src-all@FreeBSD.ORG Fri Jul 9 13:59:54 2010 Return-Path: Delivered-To: svn-src-all@freebsd.org Received: from mx1.freebsd.org (mx1.freebsd.org [IPv6:2001:4f8:fff6::34]) by hub.freebsd.org (Postfix) with ESMTP id 0771C106566C; Fri, 9 Jul 2010 13:59:54 +0000 (UTC) (envelope-from jhb@FreeBSD.org) Received: from svn.freebsd.org (svn.freebsd.org [IPv6:2001:4f8:fff6::2c]) by mx1.freebsd.org (Postfix) with ESMTP id EC0E38FC23; Fri, 9 Jul 2010 13:59:53 +0000 (UTC) Received: from svn.freebsd.org (localhost [127.0.0.1]) by svn.freebsd.org (8.14.3/8.14.3) with ESMTP id o69DxrKE053468; Fri, 9 Jul 2010 13:59:53 GMT (envelope-from jhb@svn.freebsd.org) Received: (from jhb@localhost) by svn.freebsd.org (8.14.3/8.14.3/Submit) id o69DxrRp053466; Fri, 9 Jul 2010 13:59:53 GMT (envelope-from jhb@svn.freebsd.org) Message-Id: <201007091359.o69DxrRp053466@svn.freebsd.org> From: John Baldwin Date: Fri, 9 Jul 2010 13:59:53 +0000 (UTC) To: src-committers@freebsd.org, svn-src-all@freebsd.org, svn-src-head@freebsd.org X-SVN-Group: head MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit Cc: Subject: svn commit: r209848 - head/sys/kern X-BeenThere: svn-src-all@freebsd.org X-Mailman-Version: 2.1.5 Precedence: list List-Id: "SVN commit messages for the entire src tree \(except for " user" and " projects" \)" List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Fri, 09 Jul 2010 13:59:54 -0000 Author: jhb Date: Fri Jul 9 13:59:53 2010 New Revision: 209848 URL: http://svn.freebsd.org/changeset/base/209848 Log: Accidentally committed an older version of this comment rather than the final one. Modified: head/sys/kern/kern_exec.c Modified: head/sys/kern/kern_exec.c ============================================================================== --- head/sys/kern/kern_exec.c Fri Jul 9 13:53:25 2010 (r209847) +++ head/sys/kern/kern_exec.c Fri Jul 9 13:59:53 2010 (r209848) @@ -753,10 +753,10 @@ interpret: p->p_flag &= ~P_INEXEC; /* - * If tracing the process, trap to debugger so breakpoints - * can be set before the program executes. We have to use - * tdsignal() to deliver the signal to the current thread - * since any other threads in this process will exit if + * If tracing the process, trap to the debugger so that + * breakpoints can be set before the program executes. We + * have to use tdsignal() to deliver the signal to the current + * thread since any other threads in this process will exit if * execve() succeeds. */ if (p->p_flag & P_TRACED)