Skip site navigation (1)Skip section navigation (2)
Date:      Sun, 13 Mar 2011 13:37:23 +0000 (UTC)
From:      Konstantin Belousov <kib@FreeBSD.org>
To:        src-committers@freebsd.org, svn-src-all@freebsd.org, svn-src-stable@freebsd.org, svn-src-stable-7@freebsd.org
Subject:   svn commit: r219607 - stable/7/sys/kern
Message-ID:  <201103131337.p2DDbN0e056165@svn.freebsd.org>

next in thread | raw e-mail | index | archive | help
Author: kib
Date: Sun Mar 13 13:37:23 2011
New Revision: 219607
URL: http://svn.freebsd.org/changeset/base/219607

Log:
  Fix mismerge.
  
  Pointy hat to:	kib

Modified:
  stable/7/sys/kern/imgact_shell.c

Modified: stable/7/sys/kern/imgact_shell.c
==============================================================================
--- stable/7/sys/kern/imgact_shell.c	Sun Mar 13 13:05:50 2011	(r219606)
+++ stable/7/sys/kern/imgact_shell.c	Sun Mar 13 13:37:23 2011	(r219607)
@@ -179,7 +179,7 @@ exec_shell_imgact(imgp)
 	length = (imgp->args->argc == 0) ? 0 :
 	    strlen(imgp->args->begin_argv) + 1;		/* bytes to delete */
 
-	if (offset > imgp->args->stringspace + length) {
+	if (offset > imgp->args->stringspace + length)
 		return (E2BIG);
 
 	bcopy(imgp->args->begin_argv + length, imgp->args->begin_argv + offset,



Want to link to this message? Use this URL: <https://mail-archive.FreeBSD.org/cgi/mid.cgi?201103131337.p2DDbN0e056165>