index : pacman | |
Archlinux32 fork of pacman | gitolite user |
summaryrefslogtreecommitdiff |
author | Allan McRae <allan@archlinux.org> | 2010-11-16 16:54:30 +1000 |
---|---|---|
committer | Dan McGee <dan@archlinux.org> | 2010-12-12 20:30:05 -0600 |
commit | e22aa23c8f5adb0fd4b7ccbee480a4906ede0346 (patch) | |
tree | f55fd3e631e186c914b358930e3e30b29cdb69cb /src | |
parent | 3f0d98c124db1547d6595762bd2d125b4350b861 (diff) |
-rw-r--r-- | src/pacman/pacman.c | 2 |
diff --git a/src/pacman/pacman.c b/src/pacman/pacman.c index 4239667e..700b74db 100644 --- a/src/pacman/pacman.c +++ b/src/pacman/pacman.c @@ -956,6 +956,8 @@ static int _parse_options(char *key, char *value) } else if(strcmp(key, "TotalDownload") == 0) { config->totaldownload = 1; pm_printf(PM_LOG_DEBUG, "config: totaldownload\n"); + } else if(strcmp(key, "CheckSpace") == 0) { + alpm_option_set_checkspace(1); } else { pm_printf(PM_LOG_ERROR, _("directive '%s' without value not recognized\n"), key); return(1); |