diff options
author | Dan McGee <dan@archlinux.org> | 2007-06-27 23:25:04 -0400 |
---|---|---|
committer | Dan McGee <dan@archlinux.org> | 2007-06-27 23:34:38 -0400 |
commit | 7daa6708d2afc710bebbb2dc30f4371f9d67120c (patch) | |
tree | 2321ad0d697ce56b4cad0e16222b3888cd31ac2f /lib/libalpm/alpm.h | |
parent | 7bdb904af5b664c1d6e47977f21f0e6bc3f8e3b0 (diff) | |
download | pacman-7daa6708d2afc710bebbb2dc30f4371f9d67120c.tar.xz |
Remove lockfile configuration from frontend, make it job of libalpm
I previously introduced some patches to make just about every path in
pacman/libalpm configurable; doing this with the lockfile seemed a bit too
far and we really should just place the lockfile where it belongs- with the
DB that needs locking.
More details in this thread:
http://archlinux.org/pipermail/pacman-dev/2007-June/008499.html
Signed-off-by: Dan McGee <dan@archlinux.org>
Diffstat (limited to 'lib/libalpm/alpm.h')
-rw-r--r-- | lib/libalpm/alpm.h | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/lib/libalpm/alpm.h b/lib/libalpm/alpm.h index add835d2..d1363803 100644 --- a/lib/libalpm/alpm.h +++ b/lib/libalpm/alpm.h @@ -106,7 +106,7 @@ const char *alpm_option_get_logfile(); void alpm_option_set_logfile(const char *logfile); const char *alpm_option_get_lockfile(); -void alpm_option_set_lockfile(const char *lockfile); +/* no set_lockfile, path is determined from dbpath */ unsigned short alpm_option_get_usesyslog(); void alpm_option_set_usesyslog(unsigned short usesyslog); |