From: otto Date: Wed, 19 Jun 2024 05:22:33 +0000 (+0000) Subject: Better words for downloaded snap is older message. X-Git-Url: http://artulab.com/gitweb/?a=commitdiff_plain;h=3ba439323f2eefa199aa6d0981e2fc6d0e7812c0;p=openbsd Better words for downloaded snap is older message. ok deraadt@ florian@ tb@ --- diff --git a/usr.sbin/sysupgrade/sysupgrade.sh b/usr.sbin/sysupgrade/sysupgrade.sh index 8f43cad7cd8..0b9624aac53 100644 --- a/usr.sbin/sysupgrade/sysupgrade.sh +++ b/usr.sbin/sysupgrade/sysupgrade.sh @@ -1,6 +1,6 @@ #!/bin/ksh # -# $OpenBSD: sysupgrade.sh,v 1.51 2024/06/18 14:57:59 florian Exp $ +# $OpenBSD: sysupgrade.sh,v 1.52 2024/06/19 05:22:33 otto Exp $ # # Copyright (c) 1997-2015 Todd Miller, Theo de Raadt, Ken Westerback # Copyright (c) 2015 Robert Peichaer @@ -191,7 +191,7 @@ if [[ -e /var/db/installed.BUILDINFO && -e BUILDINFO ]]; then installed_build_ts=$(cut -f3 -d' ' /var/db/installed.BUILDINFO) build_ts=$(cut -f3 -d' ' BUILDINFO) if (( $build_ts < $installed_build_ts )) && ! $FORCE; then - echo "New snapshot is older than installed snapshot. Use -f to force upgrade." + echo "Downloaded snapshot is older than installed snapshot. Use -f to force downgrade." exit 1 fi fi