Received: by mail.netbsd.org (Postfix, from userid 605) id 1768084E58; Mon, 19 Feb 2018 12:03:02 +0000 (UTC) Received: from localhost (localhost [127.0.0.1]) by mail.netbsd.org (Postfix) with ESMTP id 966A284E41 for ; Mon, 19 Feb 2018 12:03:01 +0000 (UTC) X-Virus-Scanned: amavisd-new at netbsd.org Received: from mail.netbsd.org ([127.0.0.1]) by localhost (mail.netbsd.org [127.0.0.1]) (amavisd-new, port 10025) with ESMTP id vFi_log7IAyH for ; Mon, 19 Feb 2018 12:03:01 +0000 (UTC) Received: from cvs.NetBSD.org (ivanova.NetBSD.org [IPv6:2001:470:a085:999:28c:faff:fe03:5984]) by mail.netbsd.org (Postfix) with ESMTP id EA94784D40 for ; Mon, 19 Feb 2018 12:03:00 +0000 (UTC) Received: by cvs.NetBSD.org (Postfix, from userid 500) id D81D2FB40; Mon, 19 Feb 2018 12:03:00 +0000 (UTC) Content-Transfer-Encoding: 7bit Content-Type: multipart/mixed; boundary="_----------=_1519041780271770" MIME-Version: 1.0 Date: Mon, 19 Feb 2018 12:03:00 +0000 From: "Thomas Klausner" Subject: CVS commit: pkgsrc/pkgtools/pbulk/files/pbulk/pbuild To: pkgsrc-changes@NetBSD.org Reply-To: wiz@netbsd.org X-Mailer: log_accum Message-Id: <20180219120300.D81D2FB40@cvs.NetBSD.org> Sender: pkgsrc-changes-owner@NetBSD.org List-Id: pkgsrc-changes.NetBSD.org Precedence: bulk List-Unsubscribe: This is a multi-part message in MIME format. --_----------=_1519041780271770 Content-Disposition: inline Content-Transfer-Encoding: 8bit Content-Type: text/plain; charset="US-ASCII" Module Name: pkgsrc Committed By: wiz Date: Mon Feb 19 12:03:00 UTC 2018 Modified Files: pkgsrc/pkgtools/pbulk/files/pbulk/pbuild: stat.c Log Message: Fix typo in status message. To generate a diff of this commit: cvs rdiff -u -r1.4 -r1.5 pkgsrc/pkgtools/pbulk/files/pbulk/pbuild/stat.c Please note that diffs are not public domain; they are subject to the copyright notices on the relevant files. --_----------=_1519041780271770 Content-Disposition: inline Content-Length: 1023 Content-Transfer-Encoding: binary Content-Type: text/x-diff; charset=us-ascii Modified files: Index: pkgsrc/pkgtools/pbulk/files/pbulk/pbuild/stat.c diff -u pkgsrc/pkgtools/pbulk/files/pbulk/pbuild/stat.c:1.4 pkgsrc/pkgtools/pbulk/files/pbulk/pbuild/stat.c:1.5 --- pkgsrc/pkgtools/pbulk/files/pbulk/pbuild/stat.c:1.4 Mon Dec 7 16:52:39 2015 +++ pkgsrc/pkgtools/pbulk/files/pbulk/pbuild/stat.c Mon Feb 19 12:03:00 2018 @@ -1,4 +1,4 @@ -/* $NetBSD: stat.c,v 1.4 2015/12/07 16:52:39 joerg Exp $ */ +/* $NetBSD: stat.c,v 1.5 2018/02/19 12:03:00 wiz Exp $ */ /*- * Copyright (c) 2007 Joerg Sonnenberger . @@ -104,7 +104,7 @@ stat_mode(const char *client_port) (unsigned long)st.failed); (void)printf(" Broken due to a broken dependency: %lu\n", (unsigned long)st.indirect_failed); - (void)printf(" Not build as explicitly marked broken: %lu\n", + (void)printf(" Not built as explicitly marked broken: %lu\n", (unsigned long)st.prefailed); (void)printf(" Broken due to an explicitly broken dependency: %lu\n", (unsigned long)st.indirect_prefailed); --_----------=_1519041780271770--