removed an uneeded error code (DB_UPTODATE)

This commit is contained in:
Aurelien Foret 2006-03-08 20:57:03 +00:00
parent d6eeae2716
commit ddcfaa1f5a
2 changed files with 0 additions and 3 deletions

View File

@ -349,7 +349,6 @@ extern enum __pmerrno_t {
PM_ERR_DB_NOT_FOUND,
PM_ERR_DB_WRITE,
PM_ERR_DB_REMOVE,
PM_ERR_DB_UPTODATE,
/* Configuration */
PM_ERR_OPT_LOGFILE,
PM_ERR_OPT_DBPATH,

View File

@ -57,8 +57,6 @@ char *alpm_strerror(int err)
return "could not update database";
case PM_ERR_DB_REMOVE:
return "could not remove database entry";
case PM_ERR_DB_UPTODATE:
return "database is up to date";
/* Configuration */
case PM_ERR_OPT_LOGFILE:
case PM_ERR_OPT_DBPATH: