index : pacman | |
Archlinux32 fork of pacman | gitolite user |
summaryrefslogtreecommitdiff |
author | Dan McGee <dan@archlinux.org> | 2007-06-13 00:31:01 -0400 |
---|---|---|
committer | Dan McGee <dan@archlinux.org> | 2007-06-13 00:31:01 -0400 |
commit | 5e774d72b0ac7777aada8271e2162d764d4f0db4 (patch) | |
tree | 7b054ad645674bc9a2f2b34eb4cd2634c71f17fd /lib/libalpm | |
parent | caf6c326ec9a376ffb794051cd09c40abc135fda (diff) |
-rw-r--r-- | lib/libalpm/alpm.h | 1 | ||||
-rw-r--r-- | lib/libalpm/error.c | 2 |
diff --git a/lib/libalpm/alpm.h b/lib/libalpm/alpm.h index e6c905fa..98115241 100644 --- a/lib/libalpm/alpm.h +++ b/lib/libalpm/alpm.h @@ -443,7 +443,6 @@ enum _pmerrno_t { PM_ERR_USER_ABORT, PM_ERR_INTERNAL_ERROR, PM_ERR_LIBARCHIVE_ERROR, - PM_ERR_DISK_FULL, PM_ERR_DB_SYNC, PM_ERR_RETRIEVE, PM_ERR_PKG_HOLD, diff --git a/lib/libalpm/error.c b/lib/libalpm/error.c index 67d8b1f2..29ee61ad 100644 --- a/lib/libalpm/error.c +++ b/lib/libalpm/error.c @@ -133,8 +133,6 @@ const char SYMEXPORT *alpm_strerror(int err) return _("internal error"); case PM_ERR_LIBARCHIVE_ERROR: return _("libarchive error"); - case PM_ERR_DISK_FULL: - return _("not enough space on disk"); case PM_ERR_PKG_HOLD: /* TODO wow this is not descriptive at all... what does this mean? */ return _("not confirmed"); |