fixed alpm compilation

This commit is contained in:
Andreas Obergrusberger 2007-11-25 14:18:49 -08:00
parent 55adecc059
commit 5edebb4a2b

View File

@ -368,7 +368,7 @@ backend_initialize (PkBackend *backend)
if (alpm_parse_config ("/etc/pacman.conf", NULL, "") != 0) if (alpm_parse_config ("/etc/pacman.conf", NULL, "") != 0)
{ {
pk_backend_error_code (backend, pk_backend_error_code (backend,
PK_ERROR_ENUM_CONFIG_PARSING, PK_ERROR_ENUM_FAILED_CONFIG_PARSING,
"Failed to parse config file"); "Failed to parse config file");
pk_debug ("alpm: %s", alpm_strerror (pm_errno)); pk_debug ("alpm: %s", alpm_strerror (pm_errno));
backend_destroy (backend); backend_destroy (backend);
@ -379,7 +379,7 @@ backend_initialize (PkBackend *backend)
if (alpm_db_register ("local") == NULL) if (alpm_db_register ("local") == NULL)
{ {
pk_backend_error_code (backend, pk_backend_error_code (backend,
PK_ERROR_ENUM_CONFIG_PARSING, PK_ERROR_ENUM_FAILED_CONFIG_PARSING,
"Failed to load local database"); "Failed to load local database");
backend_destroy (backend); backend_destroy (backend);
return; return;