From: Michael Vogt Date: Wed, 5 Oct 2011 19:51:07 +0000 (+0200) Subject: cmdline/apt-key: use MASTER instead of MASTER_KEYRING as the former is the argument... X-Git-Tag: 0.9.13.exp1ubuntu1~125^2 X-Git-Url: https://git.saurik.com/apt.git/commitdiff_plain/04a8d1205d87c085ff6349d7e7824c5571282dba?ds=sidebyside;hp=--cc cmdline/apt-key: use MASTER instead of MASTER_KEYRING as the former is the argument of the function --- 04a8d1205d87c085ff6349d7e7824c5571282dba diff --git a/cmdline/apt-key b/cmdline/apt-key index 9c7804d5b..7bfe47fca 100755 --- a/cmdline/apt-key +++ b/cmdline/apt-key @@ -67,7 +67,7 @@ add_keys_with_verify_against_master_keyring() { # check if signed with the master key and only add in this case ADDED=0 for master_key in $master_keys; do - if $GPG_CMD --keyring $MASTER_KEYRING --keyring $TMP_KEYRING --check-sigs --with-colons $add_key | grep '^sig:!:' | cut -d: -f5 | grep -q $master_key; then + if $GPG_CMD --keyring $MASTER --keyring $TMP_KEYRING --check-sigs --with-colons $add_key | grep '^sig:!:' | cut -d: -f5 | grep -q $master_key; then $GPG --import $TMP_KEYRING ADDED=1 fi