index : pacman | |
Archlinux32 fork of pacman | gitolite user |
summaryrefslogtreecommitdiff |
author | Aurelien Foret <aurelien@archlinux.org> | 2005-03-18 18:36:29 +0000 |
---|---|---|
committer | Aurelien Foret <aurelien@archlinux.org> | 2005-03-18 18:36:29 +0000 |
commit | 4764f08852808bda58b8038a313f71005571a0d1 (patch) | |
tree | 0af96bb57e6b1c418d0582e837c7758c4febd7cf | |
parent | 3658d50727f3e5c264e95b7bfe6bc82dfcc2b908 (diff) |
-rw-r--r-- | lib/libalpm/handle.c | 4 |
diff --git a/lib/libalpm/handle.c b/lib/libalpm/handle.c index 1c3501f7..8034f6c9 100644 --- a/lib/libalpm/handle.c +++ b/lib/libalpm/handle.c @@ -57,7 +57,7 @@ pmhandle_t *handle_new() } /* see if we're root or not (fakeroot does not count) */ - if(handle->uid() == 0 && !getenv("FAKEROOTKEY")) { + if(handle->uid == 0 && !getenv("FAKEROOTKEY")) { handle->access = PM_ACCESS_RW; } else { handle->access = PM_ACCESS_RO; @@ -138,7 +138,7 @@ int handle_set_option(pmhandle_t *handle, unsigned char val, unsigned long data) DBPATH value */ break; case PM_OPT_LOGFILE: - if((char *)data == NULL || handle->uid() != 0) { + if((char *)data == NULL || handle->uid != 0) { return(0); } if(handle->logfile) { |