mirror of
https://github.com/moparisthebest/pacman
synced 2024-12-21 23:38:49 -05:00
Renamed PACXXX defines to PM_XXX
This commit is contained in:
parent
ba13bc8b7b
commit
5faecdb523
@ -68,13 +68,13 @@ int alpm_initialize(char *root)
|
||||
|
||||
/* lock db */
|
||||
if(handle->access == PM_ACCESS_RW) {
|
||||
if(_alpm_lckmk(PACLOCK) == -1) {
|
||||
if(_alpm_lckmk(PM_LOCK) == -1) {
|
||||
FREE(handle);
|
||||
PM_RET_ERR(PM_ERR_HANDLE_LOCK, -1);
|
||||
}
|
||||
}
|
||||
|
||||
strncpy(str, (root) ? root : PACROOT, PATH_MAX);
|
||||
strncpy(str, (root) ? root : PM_ROOT, PATH_MAX);
|
||||
/* add a trailing '/' if there isn't one */
|
||||
if(str[strlen(str)-1] != '/') {
|
||||
strcat(str, "/");
|
||||
@ -92,9 +92,9 @@ int alpm_release()
|
||||
|
||||
/* unlock db */
|
||||
if(handle->access == PM_ACCESS_RW) {
|
||||
if(_alpm_lckrm(PACLOCK)) {
|
||||
_alpm_log(PM_LOG_WARNING, "could not remove lock file %s", PACLOCK);
|
||||
alpm_logaction("warning: could not remove lock file %s", PACLOCK);
|
||||
if(_alpm_lckrm(PM_LOCK)) {
|
||||
_alpm_log(PM_LOG_WARNING, "could not remove lock file %s", PM_LOCK);
|
||||
alpm_logaction("warning: could not remove lock file %s", PM_LOCK);
|
||||
}
|
||||
}
|
||||
|
||||
|
@ -130,7 +130,7 @@ int handle_set_option(pmhandle_t *handle, unsigned char val, unsigned long data)
|
||||
PM_RET_ERR(PM_ERR_TRANS_INITIALIZED, -1);
|
||||
}
|
||||
|
||||
strncpy(str, ((char *)data) ? (char *)data : PACDBPATH, PATH_MAX);
|
||||
strncpy(str, ((char *)data) ? (char *)data : PM_DBPATH, PATH_MAX);
|
||||
handle->dbpath = strdup(str);
|
||||
_alpm_log(PM_LOG_FLOW2, "PM_OPT_DBPATH set to '%s'", handle->dbpath);
|
||||
break;
|
||||
|
@ -26,9 +26,9 @@
|
||||
#include "trans.h"
|
||||
#include "alpm.h"
|
||||
|
||||
#define PACROOT "/"
|
||||
#define PACDBPATH "var/lib/pacman"
|
||||
#define PACLOCK "/tmp/pacman.lck"
|
||||
#define PM_ROOT "/"
|
||||
#define PM_DBPATH "var/lib/pacman"
|
||||
#define PM_LOCK "/tmp/pacman.lck"
|
||||
|
||||
typedef enum __pmaccess_t {
|
||||
PM_ACCESS_RO,
|
||||
|
Loading…
Reference in New Issue
Block a user