mirror of
https://github.com/moparisthebest/pacman
synced 2024-11-11 20:05:07 -05:00
Merge branch 'maint'
This commit is contained in:
commit
38143770a9
@ -450,9 +450,9 @@ fi
|
||||
# file, falling back on a hard default
|
||||
PACMAN_KEYRING_DIR=${PACMAN_KEYRING_DIR:-$(get_from "$CONFIG" "GPGDir" "@sysconfdir@/pacman.d/gnupg")}
|
||||
|
||||
GPG_PACMAN=(gpg --homedir ${PACMAN_KEYRING_DIR} --no-permission-warning)
|
||||
GPG_PACMAN=(gpg --homedir "${PACMAN_KEYRING_DIR}" --no-permission-warning)
|
||||
if [[ -n ${KEYSERVER} ]]; then
|
||||
GPG_PACMAN+=(--keyserver ${KEYSERVER})
|
||||
GPG_PACMAN+=(--keyserver "${KEYSERVER}")
|
||||
fi
|
||||
|
||||
# check only a single operation has been given
|
||||
@ -492,7 +492,7 @@ fi
|
||||
(( POPULATE )) && populate_keyring
|
||||
(( RECEIVE )) && "${GPG_PACMAN[@]}" --recv-keys "${KEYIDS[@]}"
|
||||
(( REFRESH )) && "${GPG_PACMAN[@]}" --refresh-keys "${KEYIDS[@]}"
|
||||
(( VERIFY )) && "${GPG_PACMAN[@]}" --verify $SIGNATURE
|
||||
(( VERIFY )) && "${GPG_PACMAN[@]}" --verify "$SIGNATURE"
|
||||
|
||||
if (( UPDATEDB )); then
|
||||
msg "$(gettext "Updating trust database...")"
|
||||
|
@ -720,16 +720,18 @@ static int _parseconfig(const char *file, struct section_t *section,
|
||||
size_t line_len;
|
||||
|
||||
linenum++;
|
||||
|
||||
/* ignore whole line and end of line comments */
|
||||
if((ptr = strchr(line, '#'))) {
|
||||
*ptr = '\0';
|
||||
}
|
||||
|
||||
strtrim(line);
|
||||
line_len = strlen(line);
|
||||
|
||||
/* ignore whole line and end of line comments */
|
||||
if(line_len == 0 || line[0] == '#') {
|
||||
if(line_len == 0) {
|
||||
continue;
|
||||
}
|
||||
if((ptr = strchr(line, '#'))) {
|
||||
*ptr = '\0';
|
||||
}
|
||||
|
||||
if(line[0] == '[' && line[line_len - 1] == ']') {
|
||||
char *name;
|
||||
|
Loading…
Reference in New Issue
Block a user