xbps_transaction_install_pkg: return EEXIST if pkg already installed.

This commit is contained in:
Juan RP
2012-02-14 00:34:26 +01:00
parent 4cd73643a3
commit cbf7417d1d
2 changed files with 3 additions and 3 deletions

View File

@ -252,7 +252,7 @@ xbps_transaction_install_pkg(const char *pkg, bool reinstall)
prop_object_release(pkgd);
if ((state == XBPS_PKG_STATE_INSTALLED) && !reinstall) {
/* error out if pkg installed and no reinstall */
return ENODEV;
return EEXIST;
}
}