From b2972e79c5d11dfa0625bf43838cb65209f7e632 Mon Sep 17 00:00:00 2001 From: Lennart Poettering Date: Sun, 5 Jun 2005 20:14:45 +0000 Subject: * cleanup trash recursively * ignore some more files * compile as C99 with -pedantic * upgrade to Berkeley DB 4.3 * add some tests for rm_rf() and copy_fd() * remove some minor warnings * minor fixes git-svn-id: file:///home/lennart/svn/public/syrep/trunk@76 07ea20a6-d2c5-0310-9e02-9ef735347d72 --- src/extract.c | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) (limited to 'src/extract.c') diff --git a/src/extract.c b/src/extract.c index 2e63d14..35ffd9c 100644 --- a/src/extract.c +++ b/src/extract.c @@ -42,7 +42,7 @@ static int cb(struct package *p, const char *name, const char *path, void *u) { if (errno == ENOENT) return 0; - fprintf(stderr, "stat(%s) failed: %s\n", path, strerror(errno)); + fprintf(stderr, "access(%s) failed: %s\n", path, strerror(errno)); return -1; } -- cgit