From 481c3edc89fa674f9723c13ab4d12f032cf8ca02 Mon Sep 17 00:00:00 2001 From: Chantry Xavier Date: Wed, 13 Feb 2008 20:42:43 +0100 Subject: get_filename : use the FILENAME db field only. Reference : FS#9547. The get_filename function first tries to get the filename field from the database, and if it doesn't find it, it tries to guess it based on the name, version and arch. This field was introduced in 3.0, but there are still many old entries in the official databases without it. So the databases need to be regenerated first before this patch can be applied. There is a second problem with the delta code, which needs the filename for locally installed packages too, but this field is not present in the local db. So the delta code needs to be fixed first. Signed-off-by: Chantry Xavier Signed-off-by: Dan McGee --- lib/libalpm/package.c | 13 ------------- 1 file changed, 13 deletions(-) (limited to 'lib/libalpm/package.c') diff --git a/lib/libalpm/package.c b/lib/libalpm/package.c index 4baa1588..ffaa96b3 100644 --- a/lib/libalpm/package.c +++ b/lib/libalpm/package.c @@ -152,19 +152,6 @@ const char SYMEXPORT *alpm_pkg_get_filename(pmpkg_t *pkg) _alpm_db_read(pkg->origin_data.db, pkg, INFRQ_DESC); } - if(pkg->filename == NULL || strlen(pkg->filename) == 0) { - /* construct the file name, it's not in the desc file */ - char buffer[PATH_MAX]; - if(pkg->arch && strlen(pkg->arch) > 0) { - snprintf(buffer, PATH_MAX, "%s-%s-%s" PKGEXT, - pkg->name, pkg->version, pkg->arch); - } else { - snprintf(buffer, PATH_MAX, "%s-%s" PKGEXT, - pkg->name, pkg->version); - } - STRDUP(pkg->filename, buffer, RET_ERR(PM_ERR_MEMORY, NULL)); - } - return pkg->filename; } -- cgit v1.2.3-54-g00ecf