summaryrefslogtreecommitdiff
path: root/usr.sbin/pkg_add/pkg_create
diff options
context:
space:
mode:
authorMarc Espie <espie@cvs.openbsd.org>2008-10-24 16:50:28 +0000
committerMarc Espie <espie@cvs.openbsd.org>2008-10-24 16:50:28 +0000
commit4d4b42276fd25bb4bb1b24a896a1d806d10f10e2 (patch)
treecd0a29aea496df30a820391cbebc677616e94db5 /usr.sbin/pkg_add/pkg_create
parentbf4fbd9a9c359b0e45dbe70f13de1e2f4c18a573 (diff)
tweak compute_digest so that it `defaults' if invoked without a 2nd argument.
switch the default digest to sha256. It's been there for a few weeks, all package tools cope with both formats, now is the time for the switch.
Diffstat (limited to 'usr.sbin/pkg_add/pkg_create')
-rw-r--r--usr.sbin/pkg_add/pkg_create4
1 files changed, 2 insertions, 2 deletions
diff --git a/usr.sbin/pkg_add/pkg_create b/usr.sbin/pkg_add/pkg_create
index 0343fb4dc90..ceec40fe428 100644
--- a/usr.sbin/pkg_add/pkg_create
+++ b/usr.sbin/pkg_add/pkg_create
@@ -1,6 +1,6 @@
#! /usr/bin/perl
# ex:ts=8 sw=4:
-# $OpenBSD: pkg_create,v 1.118 2008/10/06 09:36:17 espie Exp $
+# $OpenBSD: pkg_create,v 1.119 2008/10/24 16:50:27 espie Exp $
#
# Copyright (c) 2003-2007 Marc Espie <espie@openbsd.org>
#
@@ -93,7 +93,7 @@ sub compute_checksum
$result->make_hardlink($stash->{"$dev/$ino"});
} else {
$stash->{"$dev/$ino"} = $name;
- $result->add_digest($self->compute_digest($fname, 'OpenBSD::md5'));
+ $result->add_digest($self->compute_digest($fname));
$result->add_size($size);
}
} else {