mirror of
https://github.com/moparisthebest/pacman
synced 2024-12-21 23:38:49 -05:00
Added missing extern declaration
This commit is contained in:
parent
47cd8c2323
commit
e1eff42fe1
@ -34,6 +34,7 @@
|
|||||||
|
|
||||||
#define min(X, Y) ((X) < (Y) ? (X) : (Y))
|
#define min(X, Y) ((X) < (Y) ? (X) : (Y))
|
||||||
|
|
||||||
|
extern char *pmo_dbpath;
|
||||||
extern list_t *pmo_holdpkg;
|
extern list_t *pmo_holdpkg;
|
||||||
extern char *pmo_proxyhost;
|
extern char *pmo_proxyhost;
|
||||||
extern unsigned short pmo_proxyport;
|
extern unsigned short pmo_proxyport;
|
||||||
@ -189,10 +190,10 @@ int parseconfig(char *file)
|
|||||||
if(*ptr == '/') {
|
if(*ptr == '/') {
|
||||||
ptr++;
|
ptr++;
|
||||||
}
|
}
|
||||||
if(alpm_set_option(PM_OPT_DBPATH, (long)ptr) == -1) {
|
if(pmo_dbpath) {
|
||||||
ERR(NL, "failed to set option DBPATH (%s)\n", alpm_strerror(pm_errno));
|
FREE(pmo_dbpath);
|
||||||
return(1);
|
|
||||||
}
|
}
|
||||||
|
pmo_dbpath = strdup(ptr);
|
||||||
vprint("config: dbpath: %s\n", ptr);
|
vprint("config: dbpath: %s\n", ptr);
|
||||||
} else if (!strcmp(key, "LOGFILE")) {
|
} else if (!strcmp(key, "LOGFILE")) {
|
||||||
if(alpm_set_option(PM_OPT_LOGFILE, (long)ptr) == -1) {
|
if(alpm_set_option(PM_OPT_LOGFILE, (long)ptr) == -1) {
|
||||||
|
Loading…
Reference in New Issue
Block a user