[pacman-dev] [PATCH] utils/cleanupdelta: remove unneeded syncdbpath

Dan McGee dan at archlinux.org
Mon Sep 19 20:17:19 EDT 2011


This variable was totally unused.

Signed-off-by: Dan McGee <dan at archlinux.org>
---
 src/util/cleanupdelta.c |   11 ++++-------
 1 files changed, 4 insertions(+), 7 deletions(-)

diff --git a/src/util/cleanupdelta.c b/src/util/cleanupdelta.c
index a45efdc..8ce74f9 100644
--- a/src/util/cleanupdelta.c
+++ b/src/util/cleanupdelta.c
@@ -22,7 +22,6 @@
 #include <stdio.h>
 #include <stdlib.h>
 #include <string.h>
-#include <limits.h> /* PATH_MAX */
 
 #include <alpm.h>
 #include <alpm_list.h>
@@ -68,19 +67,17 @@ static void checkpkgs(alpm_list_t *pkglist)
 }
 
 static void checkdbs(const char *dbpath, alpm_list_t *dbnames) {
-	char syncdbpath[PATH_MAX];
 	alpm_db_t *db = NULL;
 	alpm_list_t *i;
 	const alpm_siglevel_t level = ALPM_SIG_DATABASE | ALPM_SIG_DATABASE_OPTIONAL;
 
 	for(i = dbnames; i; i = alpm_list_next(i)) {
-		char *dbname = alpm_list_getdata(i);
-		snprintf(syncdbpath, PATH_MAX, "%s/sync/%s", dbpath, dbname);
+		const char *dbname = alpm_list_getdata(i);
 		db = alpm_db_register_sync(handle, dbname, level);
 		if(db == NULL) {
-			fprintf(stderr, "error: could not register sync database (%s)\n",
-					alpm_strerror(alpm_errno(handle)));
-			return;
+			fprintf(stderr, "error: could not register sync database '%s' (%s)\n",
+					dbname, alpm_strerror(alpm_errno(handle)));
+			continue;
 		}
 		checkpkgs(alpm_db_get_pkgcache(db));
 	}
-- 
1.7.6.1



More information about the pacman-dev mailing list