commit 3c90766404683407368cab9526d13b0aa8036469 Author: Bartlomiej Zimon Date: Wed Mar 21 01:48:26 2012 +0100 - pndir update: realy keep quiet Signed-off-by: Bartlomiej Zimon diff --git a/pkgdir/pndir/update.c b/pkgdir/pndir/update.c index 830356a..c26fe9f 100644 --- a/pkgdir/pndir/update.c +++ b/pkgdir/pndir/update.c @@ -289,8 +289,7 @@ int pndir_m_update(struct pkgdir *pkgdir, enum pkgdir_uprc *uprc) pidxpath += 6; // to keep quiet vf_stat - if (poldek_VERBOSE < 2) - vfile_configure(VFILE_CONF_VERBOSE, &poldek_VERBOSE); + vfile_configure(VFILE_CONF_VERBOSE, 0); snprintf(path, sizeof(path), "%s.ndir.%s", pkgdir->idxpath, pidxpath); commit 55c3e1253032e28eab75bf775b247db4882961f2 Author: Bartlomiej Zimon Date: Wed Mar 21 02:23:27 2012 +0100 - add name for aria fetcher Signed-off-by: Bartlomiej Zimon diff --git a/doc/poldek.conf.xml b/doc/poldek.conf.xml index 5846888..17347e5 100644 --- a/doc/poldek.conf.xml +++ b/doc/poldek.conf.xml @@ -729,6 +729,7 @@ proto = http,ftp,https cmd = wget -N --dot-style=binary -P %d %Pn [fetcher] +name = aria proto = http,ftp,https cmd = aria2c --log-level=info --summary-interval=0 --truncate-console-readout=true -c -k1M -j5 -s5 -x5 -Z -P -d %d %Pn commit f18bedfa368995550e231f382718029bdc2300df Author: Marcin Banasiak Date: Sun Feb 19 16:55:35 2012 +0100 Fix types in tndb_get_all diff --git a/tndb/read.c b/tndb/read.c index b57bb50..d560799 100644 --- a/tndb/read.c +++ b/tndb/read.c @@ -497,7 +497,8 @@ size_t tndb_get_all(struct tndb *db, const void *key, size_t klen, void **val) { off_t voffs; - size_t nread = 0, vlen; + size_t nread = 0; + unsigned int vlen; if (tndb_get_voff(db, key, klen, &voffs, &vlen)) { *val = n_malloc(vlen + 1); /* extra byte for \0 */