diff options
author | 2013-12-23 16:55:00 +0000 | |
---|---|---|
committer | 2013-12-23 16:55:00 +0000 | |
commit | 6b9e35a69688c49a879ba12ebc2cb771c0dd81c7 (patch) | |
tree | 273815b445bd66a566ee4a1ae97bbba2f01f73e1 | |
parent | move ntogo code, so it can be used while copying packages in pkg_create. (diff) | |
download | wireguard-openbsd-6b9e35a69688c49a879ba12ebc2cb771c0dd81c7.tar.xz wireguard-openbsd-6b9e35a69688c49a879ba12ebc2cb771c0dd81c7.zip |
Cope with the change in ftp(1) warning messages since last commit.
Issue reported by Maxime Villard, ok espie@.
-rw-r--r-- | usr.sbin/pkg_add/OpenBSD/PackageRepository.pm | 3 |
1 files changed, 2 insertions, 1 deletions
diff --git a/usr.sbin/pkg_add/OpenBSD/PackageRepository.pm b/usr.sbin/pkg_add/OpenBSD/PackageRepository.pm index d559243cec6..00d7f3c87a3 100644 --- a/usr.sbin/pkg_add/OpenBSD/PackageRepository.pm +++ b/usr.sbin/pkg_add/OpenBSD/PackageRepository.pm @@ -1,5 +1,5 @@ # ex:ts=8 sw=4: -# $OpenBSD: PackageRepository.pm,v 1.96 2013/12/08 12:53:23 jca Exp $ +# $OpenBSD: PackageRepository.pm,v 1.97 2013/12/23 16:55:00 jca Exp $ # # Copyright (c) 2003-2010 Marc Espie <espie@openbsd.org> # @@ -700,6 +700,7 @@ sub parse_problems if (defined $hint && $hint == 0) { next if m/^ftp: -: short write/o; + next if m/^ftp: local: -: Broken pipe/o; next if m/^ftp: Writing -: Broken pipe/o; next if m/^421\s+/o; } |