1
0
mirror of https://github.com/moparisthebest/pacman synced 2024-12-23 08:18:51 -05:00

Merge branch 'maint'

This commit is contained in:
Dan McGee 2011-11-07 09:16:10 -06:00
commit 1a994bf180
3 changed files with 8 additions and 5 deletions

View File

@ -217,7 +217,7 @@ char *_alpm_strtrim(char *str)
size_t _alpm_strip_newline(char *str) size_t _alpm_strip_newline(char *str)
{ {
size_t len; size_t len;
if(str == '\0') { if(*str == '\0') {
return 0; return 0;
} }
len = strlen(str); len = strlen(str);

View File

@ -334,7 +334,7 @@ in_array() {
source_has_signatures(){ source_has_signatures(){
local file local file
for file in "${source[@]}"; do for file in "${source[@]}"; do
if [[ $file = *.@(sig|asc) ]]; then if [[ $file = *.@(sig?(n)|asc) ]]; then
return 0 return 0
fi fi
done done
@ -704,7 +704,7 @@ check_pgpsigs() {
for file in "${source[@]}"; do for file in "${source[@]}"; do
file="$(get_filename "$file")" file="$(get_filename "$file")"
if [[ ! $file = *.@(sig|asc) ]]; then if [[ ! $file = *.@(sig?(n)|asc) ]]; then
continue continue
fi fi

View File

@ -699,8 +699,11 @@ void cb_dl_progress(const char *filename, off_t file_xfered, off_t file_total)
xfered_human = humanize_size(xfered, '\0', &xfered_label); xfered_human = humanize_size(xfered, '\0', &xfered_label);
printf(" %ls%-*s ", wcfname, padwid, ""); printf(" %ls%-*s ", wcfname, padwid, "");
/* We will show 1.6M/s, 11.6M/s, but 116K/s and 1116K/s */ /* We will show 1.62M/s, 11.6M/s, but 116K/s and 1116K/s */
if(rate_human < 100.0) { if(rate_human < 9.995) {
printf("%6.1f %3s %4.2f%c/s ",
xfered_human, xfered_label, rate_human, rate_label[0]);
} else if(rate_human < 99.95) {
printf("%6.1f %3s %4.1f%c/s ", printf("%6.1f %3s %4.1f%c/s ",
xfered_human, xfered_label, rate_human, rate_label[0]); xfered_human, xfered_label, rate_human, rate_label[0]);
} else { } else {