From owner-cvs-src@FreeBSD.ORG Sun May 14 20:23:13 2006 Return-Path: X-Original-To: cvs-src@FreeBSD.org Delivered-To: cvs-src@FreeBSD.org Received: from mx1.FreeBSD.org (mx1.freebsd.org [216.136.204.125]) by hub.freebsd.org (Postfix) with ESMTP id 2465116A42D; Sun, 14 May 2006 20:23:13 +0000 (UTC) (envelope-from krion@FreeBSD.org) Received: from repoman.freebsd.org (repoman.freebsd.org [216.136.204.115]) by mx1.FreeBSD.org (Postfix) with ESMTP id DBC8943D45; Sun, 14 May 2006 20:23:09 +0000 (GMT) (envelope-from krion@FreeBSD.org) Received: from repoman.freebsd.org (localhost [127.0.0.1]) by repoman.freebsd.org (8.13.6/8.13.6) with ESMTP id k4EKN1Ng089428; Sun, 14 May 2006 20:23:01 GMT (envelope-from krion@repoman.freebsd.org) Received: (from krion@localhost) by repoman.freebsd.org (8.13.6/8.13.4/Submit) id k4EKN1Lb089427; Sun, 14 May 2006 20:23:01 GMT (envelope-from krion) Message-Id: <200605142023.k4EKN1Lb089427@repoman.freebsd.org> From: Kirill Ponomarew Date: Sun, 14 May 2006 20:23:01 +0000 (UTC) To: src-committers@FreeBSD.org, cvs-src@FreeBSD.org, cvs-all@FreeBSD.org X-FreeBSD-CVS-Branch: HEAD Cc: Subject: cvs commit: src/usr.bin/find extern.h find.c find.h function.c X-BeenThere: cvs-src@freebsd.org X-Mailman-Version: 2.1.5 Precedence: list List-Id: CVS commit messages for the src tree List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Sun, 14 May 2006 20:23:14 -0000 krion 2006-05-14 20:23:01 UTC FreeBSD src repository Modified files: usr.bin/find extern.h find.c find.h function.c Log: The last execution of -exec {} + is not done if the -exec primary is not on the top-level -and sequence, e.g. inside of ! or -or. Create a separate linked list of all active -exec {} + primaries and do the last execution for all at termination. PR: bin/79263 Submitted by: Jilles Tjoelker MFC after: 7 days Revision Changes Path 1.23 +1 -0 src/usr.bin/find/extern.h 1.18 +1 -4 src/usr.bin/find/find.c 1.19 +2 -0 src/usr.bin/find/find.h 1.56 +17 -0 src/usr.bin/find/function.c