diff options
author | wiz <wiz> | 2001-06-06 23:37:52 +0000 |
---|---|---|
committer | wiz <wiz> | 2001-06-06 23:37:52 +0000 |
commit | b6531002d6105b016996a3a1547d85c989fc1153 (patch) | |
tree | 0d497757719dfedb24af4bdaf5c3fd18d9fb4cbb /security | |
parent | 94d2559232716645ad678aaaeb983b32b0df7a52 (diff) | |
download | pkgsrc-b6531002d6105b016996a3a1547d85c989fc1153.tar.gz |
Fix warning output if new file is smaller than old one.
Noted by Kimmo Suominen. Bump to 1.9.
Diffstat (limited to 'security')
-rw-r--r-- | security/audit-packages/Makefile | 4 | ||||
-rw-r--r-- | security/audit-packages/files/download-vulnerability-list | 2 |
2 files changed, 3 insertions, 3 deletions
diff --git a/security/audit-packages/Makefile b/security/audit-packages/Makefile index c704dd770d1..148e1fe590c 100644 --- a/security/audit-packages/Makefile +++ b/security/audit-packages/Makefile @@ -1,6 +1,6 @@ -# $NetBSD: Makefile,v 1.10 2001/04/27 08:40:53 agc Exp $ +# $NetBSD: Makefile,v 1.11 2001/06/06 23:37:52 wiz Exp $ -DISTNAME= audit-packages-1.8 +DISTNAME= audit-packages-1.9 CATEGORIES= security pkgtools MASTER_SITES= # empty DISTFILES= # empty diff --git a/security/audit-packages/files/download-vulnerability-list b/security/audit-packages/files/download-vulnerability-list index e2513e6af43..26be7dedab2 100644 --- a/security/audit-packages/files/download-vulnerability-list +++ b/security/audit-packages/files/download-vulnerability-list @@ -19,7 +19,7 @@ if [ -f ${NEW_VUL_LIST} ]; then newsize=`/bin/ls -l ${NEW_VUL_LIST} | ${AWK} '{ print $5 }'` fi if [ $newsize -lt $existsize ]; then - echo "New vulnerability list ($$newsize bytes) is smaller than existing list ($$existsize bytes)" 1>&2 + echo "New vulnerability list ($newsize bytes) is smaller than existing list ($existsize bytes)" 1>&2 /bin/rm -f ${NEW_VUL_LIST} exit 1 fi |