summaryrefslogtreecommitdiff
path: root/usr.sbin
diff options
context:
space:
mode:
authorAntoine Jacoutot <ajacoutot@cvs.openbsd.org>2020-07-25 12:14:17 +0000
committerAntoine Jacoutot <ajacoutot@cvs.openbsd.org>2020-07-25 12:14:17 +0000
commit6aebf6970a28f34a305adffaa80c9faa84321f04 (patch)
treea917ff371ef06394714e93fdceb2e2661378059d /usr.sbin
parent293c397d97fe53b72d74addb34308b631d6b9e1d (diff)
More DESC -> DESCR; spotted by espie@
Diffstat (limited to 'usr.sbin')
-rw-r--r--usr.sbin/pkg_add/OpenBSD/PkgCreate.pm6
1 files changed, 3 insertions, 3 deletions
diff --git a/usr.sbin/pkg_add/OpenBSD/PkgCreate.pm b/usr.sbin/pkg_add/OpenBSD/PkgCreate.pm
index d8ffe6cfc58..efb5a5e3b14 100644
--- a/usr.sbin/pkg_add/OpenBSD/PkgCreate.pm
+++ b/usr.sbin/pkg_add/OpenBSD/PkgCreate.pm
@@ -1,6 +1,6 @@
#! /usr/bin/perl
# ex:ts=8 sw=4:
-# $OpenBSD: PkgCreate.pm,v 1.168 2020/07/25 12:08:17 ajacoutot Exp $
+# $OpenBSD: PkgCreate.pm,v 1.169 2020/07/25 12:14:16 ajacoutot Exp $
#
# Copyright (c) 2003-2014 Marc Espie <espie@openbsd.org>
#
@@ -1280,7 +1280,7 @@ sub add_description
}
return if defined $state->opt('q');
- open(my $fh, '+>', $o->fullname) or die "Can't write to DESC: $!";
+ open(my $fh, '+>', $o->fullname) or die "Can't write to DESCR: $!";
if (defined $comment) {
print $fh $subst->do($comment), "\n";
}
@@ -1300,7 +1300,7 @@ sub add_description
print $fh "\n", $subst->do('WWW: ${HOMEPAGE}'), "\n";
}
}
- seek($fh, 0, 0) or die "Can't rewind DESC: $!";
+ seek($fh, 0, 0) or die "Can't rewind DESCR: $!";
my $errors = 0;
while (<$fh>) {
chomp;