pacman-conf: fix incomplete support for ILoveCandy
This was only partially implemented in the original implementation. `pacman-conf | grep ILoveCandy` would tell you if it was set, but querying directly by name would not. Signed-off-by: Eli Schwartz <eschwartz@archlinux.org> Signed-off-by: Allan McRae <allan@archlinux.org>
This commit is contained in:
parent
559590256c
commit
7423b16604
1 changed files with 2 additions and 0 deletions
|
@ -379,6 +379,8 @@ static int list_directives(void)
|
|||
show_bool("VerbosePkgLists", config->verbosepkglists);
|
||||
} else if(strcasecmp(i->data, "DisableDownloadTimeout") == 0) {
|
||||
show_bool("DisableDownloadTimeout", config->disable_dl_timeout);
|
||||
} else if(strcasecmp(i->data, "ILoveCandy") == 0) {
|
||||
show_bool("ILoveCandy", config->chomp);
|
||||
} else if(strcasecmp(i->data, "NoProgressBar") == 0) {
|
||||
show_bool("NoProgressBar", config->noprogressbar);
|
||||
|
||||
|
|
Loading…
Add table
Reference in a new issue