diff options
author | Dan McGee <dan@archlinux.org> | 2007-06-08 04:20:40 +0200 |
---|---|---|
committer | Dan McGee <dan@archlinux.org> | 2007-06-09 18:57:50 +0200 |
commit | 25c5b39d05cdb8856098429d0fa6f8da595d5af6 (patch) | |
tree | e6ec51c96f782f51f7e8e36bc59d8387fbc63f7b /lib | |
parent | a32ca90192ea2b2df2fadb820c9e47bbaec93151 (diff) | |
download | pacman-25c5b39d05cdb8856098429d0fa6f8da595d5af6.tar.gz pacman-25c5b39d05cdb8856098429d0fa6f8da595d5af6.tar.xz |
Fix up things after the last few changes
* Readd default logmask of ERROR and WARNING
* Remove DOWNLOAD log level as it no longer applies
* Add 'no targets' logic back in where it applies
* Switch some prints in parseconfig to ERROR
Signed-off-by: Dan McGee <dan@archlinux.org>
Diffstat (limited to 'lib')
-rw-r--r-- | lib/libalpm/alpm.h | 3 |
1 files changed, 1 insertions, 2 deletions
diff --git a/lib/libalpm/alpm.h b/lib/libalpm/alpm.h index 67f2adf7..0e545dd1 100644 --- a/lib/libalpm/alpm.h +++ b/lib/libalpm/alpm.h @@ -67,8 +67,7 @@ typedef enum _pmloglevel_t { PM_LOG_ERROR = 0x01, PM_LOG_WARNING = 0x02, PM_LOG_DEBUG = 0x04, - PM_LOG_DOWNLOAD = 0x08, - PM_LOG_FUNCTION = 0x10 + PM_LOG_FUNCTION = 0x08 } pmloglevel_t; typedef void (*alpm_cb_log)(pmloglevel_t, char *, va_list); |