index : pacman | |
Archlinux32 fork of pacman | gitolite user |
summaryrefslogtreecommitdiff |
author | Allan McRae <allan@archlinux.org> | 2011-06-28 14:42:24 +1000 |
---|---|---|
committer | Allan McRae <allan@archlinux.org> | 2011-06-28 23:28:24 +1000 |
commit | 590a8fcb1e72707d83d04f639385de0d7f2a60c1 (patch) | |
tree | a5350157369e36d19e77d37aba12c46855443c92 /src | |
parent | 0aef91bc4fc5e872afe7da1692bf97c027eecf37 (diff) |
-rw-r--r-- | src/pacman/conf.h | 2 | ||||
-rw-r--r-- | src/pacman/util.c | 2 | ||||
-rw-r--r-- | src/pacman/util.h | 2 |
diff --git a/src/pacman/conf.h b/src/pacman/conf.h index c0f35493..64b911ab 100644 --- a/src/pacman/conf.h +++ b/src/pacman/conf.h @@ -70,7 +70,7 @@ typedef struct __config_t { unsigned short group; unsigned short noask; unsigned int ask; - pmtransflag_t flags; + alpm_transflag_t flags; pgp_verify_t sigverify; /* conf file options */ diff --git a/src/pacman/util.c b/src/pacman/util.c index 5dceead3..a661b2e9 100644 --- a/src/pacman/util.c +++ b/src/pacman/util.c @@ -49,7 +49,7 @@ #include "callback.h" -int trans_init(pmtransflag_t flags) +int trans_init(alpm_transflag_t flags) { int ret; if(config->print) { diff --git a/src/pacman/util.h b/src/pacman/util.h index 25e2f302..5d86dfda 100644 --- a/src/pacman/util.h +++ b/src/pacman/util.h @@ -39,7 +39,7 @@ /* update speed for the fill_progress based functions */ #define UPDATE_SPEED_SEC 0.2f -int trans_init(pmtransflag_t flags); +int trans_init(alpm_transflag_t flags); int trans_release(void); int needs_root(void); int getcols(void); |