From af2fb3324a925af6caa9d53aacac92173fc47885 Mon Sep 17 00:00:00 2001 From: Aaron Griffin Date: Tue, 31 Oct 2006 06:39:59 +0000 Subject: Numerous changes: * Furthered the "lazy caching" to force the pkgcache to read nothing (INFRQ_NONE) by default. Anything requiring package data should now check the infolevel of each package and attempt to update it. This could be ironed out a bit more later (by using the front-end get_info function * Switched to libfetch. Drastic changes to the download code and the callback progress bar functions. Also fixed the return value of _alpm_downloadfiles_forreal. Downloading now supports http, ftp, https, and files urls, along with 'mtime's and numerous other fancy features from libfetch. --- lib/libalpm/backup.c | 7 ++++--- 1 file changed, 4 insertions(+), 3 deletions(-) (limited to 'lib/libalpm/backup.c') diff --git a/lib/libalpm/backup.c b/lib/libalpm/backup.c index 1c969835..cf29abf0 100644 --- a/lib/libalpm/backup.c +++ b/lib/libalpm/backup.c @@ -27,6 +27,7 @@ #include /* pacman */ #include "backup.h" +#include "util.h" /* Look for a filename in a pmpkg_t.backup list. If we find it, * then we return the md5 or sha1 hash (parsed from the same line) @@ -47,7 +48,7 @@ char *_alpm_needbackup(char *file, pmlist_t *backup) /* tab delimiter */ ptr = strchr(str, '\t'); if(ptr == NULL) { - free(str); + FREE(str); continue; } *ptr = '\0'; @@ -55,10 +56,10 @@ char *_alpm_needbackup(char *file, pmlist_t *backup) /* now str points to the filename and ptr points to the md5 or sha1 hash */ if(!strcmp(file, str)) { char *md5 = strdup(ptr); - free(str); + FREE(str); return(md5); } - free(str); + FREE(str); } return(NULL); -- cgit v1.2.3-24-g4f1b