summaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorXavier Chantry <chantry.xavier@gmail.com>2011-04-02 10:36:15 +0200
committerXavier Chantry <chantry.xavier@gmail.com>2011-04-17 16:54:19 +0200
commit11304d7e5f4d4b90f4d4e712f5341bd616ad1e72 (patch)
tree76356912d8c882ccdb3c1684d905de98ec0eca3a
parentefd8ae483fe587feccd32c90fbee474aa19a5557 (diff)
downloadpacman-11304d7e5f4d4b90f4d4e712f5341bd616ad1e72.tar.gz
pacman-11304d7e5f4d4b90f4d4e712f5341bd616ad1e72.zip
libalpm: switch default VerifySig to Optional
Signed-off-by: Xavier Chantry <chantry.xavier@gmail.com>
-rw-r--r--lib/libalpm/alpm.h2
1 files changed, 1 insertions, 1 deletions
diff --git a/lib/libalpm/alpm.h b/lib/libalpm/alpm.h
index 7259957d..da3ecc0b 100644
--- a/lib/libalpm/alpm.h
+++ b/lib/libalpm/alpm.h
@@ -565,8 +565,8 @@ int alpm_db_check_pgp_signature(pmdb_t *db);
/* GPG signature verification option */
typedef enum _pgp_verify_t {
- PM_PGP_VERIFY_ALWAYS,
PM_PGP_VERIFY_OPTIONAL,
+ PM_PGP_VERIFY_ALWAYS,
PM_PGP_VERIFY_NEVER
} pgp_verify_t;