Received: by mail.netbsd.org (Postfix, from userid 605) id C834284DA2; Tue, 4 Aug 2020 02:35:10 +0000 (UTC) Received: from localhost (localhost [127.0.0.1]) by mail.netbsd.org (Postfix) with ESMTP id 4F7BE84D93 for ; Tue, 4 Aug 2020 02:35:10 +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 Ydwp3gdteyCL for ; Tue, 4 Aug 2020 02:35:09 +0000 (UTC) Received: from cvs.NetBSD.org (ivanova.netbsd.org [199.233.217.197]) by mail.netbsd.org (Postfix) with ESMTP id BE56D84D7D for ; Tue, 4 Aug 2020 02:35:09 +0000 (UTC) Received: by cvs.NetBSD.org (Postfix, from userid 500) id B8366FB28; Tue, 4 Aug 2020 02:35:09 +0000 (UTC) Content-Transfer-Encoding: 7bit Content-Type: multipart/mixed; boundary="_----------=_159650850986720" MIME-Version: 1.0 Date: Tue, 4 Aug 2020 02:35:09 +0000 From: "Tobias Nygren" Subject: CVS commit: pkgsrc/pkgtools/pbulk/files/pbulk To: pkgsrc-changes@NetBSD.org Reply-To: tnn@netbsd.org X-Mailer: log_accum Message-Id: <20200804023509.B8366FB28@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. --_----------=_159650850986720 Content-Disposition: inline Content-Transfer-Encoding: 8bit Content-Type: text/plain; charset="US-ASCII" Module Name: pkgsrc Committed By: tnn Date: Tue Aug 4 02:35:09 UTC 2020 Modified Files: pkgsrc/pkgtools/pbulk/files/pbulk/pbuild: client.c stat.c pkgsrc/pkgtools/pbulk/files/pbulk/pscan: client.c Log Message: pbulk: fix typo in error message To generate a diff of this commit: cvs rdiff -u -r1.6 -r1.7 pkgsrc/pkgtools/pbulk/files/pbulk/pbuild/client.c cvs rdiff -u -r1.5 -r1.6 pkgsrc/pkgtools/pbulk/files/pbulk/pbuild/stat.c cvs rdiff -u -r1.6 -r1.7 pkgsrc/pkgtools/pbulk/files/pbulk/pscan/client.c Please note that diffs are not public domain; they are subject to the copyright notices on the relevant files. --_----------=_159650850986720 Content-Disposition: inline Content-Length: 2523 Content-Transfer-Encoding: binary Content-Type: text/x-diff; charset=us-ascii Modified files: Index: pkgsrc/pkgtools/pbulk/files/pbulk/pbuild/client.c diff -u pkgsrc/pkgtools/pbulk/files/pbulk/pbuild/client.c:1.6 pkgsrc/pkgtools/pbulk/files/pbulk/pbuild/client.c:1.7 --- pkgsrc/pkgtools/pbulk/files/pbulk/pbuild/client.c:1.6 Mon Dec 7 16:52:39 2015 +++ pkgsrc/pkgtools/pbulk/files/pbulk/pbuild/client.c Tue Aug 4 02:35:09 2020 @@ -1,4 +1,4 @@ -/* $NetBSD: client.c,v 1.6 2015/12/07 16:52:39 joerg Exp $ */ +/* $NetBSD: client.c,v 1.7 2020/08/04 02:35:09 tnn Exp $ */ /*- * Copyright (c) 2007 Joerg Sonnenberger . @@ -58,7 +58,7 @@ client_mode(const char *client_port) int fd; if ((fd = connect_sockaddr(client_port)) == -1) - err(1, "Could not creation connection to %s", client_port); + err(1, "Could not create connection to %s", client_port); loop: sent_bytes = atomic_write(fd, "G", 1); Index: pkgsrc/pkgtools/pbulk/files/pbulk/pbuild/stat.c diff -u pkgsrc/pkgtools/pbulk/files/pbulk/pbuild/stat.c:1.5 pkgsrc/pkgtools/pbulk/files/pbulk/pbuild/stat.c:1.6 --- pkgsrc/pkgtools/pbulk/files/pbulk/pbuild/stat.c:1.5 Mon Feb 19 12:03:00 2018 +++ pkgsrc/pkgtools/pbulk/files/pbulk/pbuild/stat.c Tue Aug 4 02:35:09 2020 @@ -1,4 +1,4 @@ -/* $NetBSD: stat.c,v 1.5 2018/02/19 12:03:00 wiz Exp $ */ +/* $NetBSD: stat.c,v 1.6 2020/08/04 02:35:09 tnn Exp $ */ /*- * Copyright (c) 2007 Joerg Sonnenberger . @@ -59,7 +59,7 @@ stat_mode(const char *client_port) int fd; if ((fd = connect_sockaddr(client_port)) == -1) - err(1, "Could not creation connection to %s", client_port); + err(1, "Could not create connection to %s", client_port); sent_bytes = write(fd, "S", 1); if (sent_bytes == -1) Index: pkgsrc/pkgtools/pbulk/files/pbulk/pscan/client.c diff -u pkgsrc/pkgtools/pbulk/files/pbulk/pscan/client.c:1.6 pkgsrc/pkgtools/pbulk/files/pbulk/pscan/client.c:1.7 --- pkgsrc/pkgtools/pbulk/files/pbulk/pscan/client.c:1.6 Mon Jun 20 17:54:43 2016 +++ pkgsrc/pkgtools/pbulk/files/pbulk/pscan/client.c Tue Aug 4 02:35:09 2020 @@ -1,4 +1,4 @@ -/* $NetBSD: client.c,v 1.6 2016/06/20 17:54:43 joerg Exp $ */ +/* $NetBSD: client.c,v 1.7 2020/08/04 02:35:09 tnn Exp $ */ /*- * Copyright (c) 2007 Joerg Sonnenberger . @@ -155,7 +155,7 @@ client_mode(const char *client_port, con int fd; if ((fd = connect_sockaddr(client_port)) == -1) - err(1, "Could not creation connection to %s", client_port); + err(1, "Could not create connection to %s", client_port); loop: recv_bytes = atomic_read(fd, &path_len, 2); --_----------=_159650850986720--