summaryrefslogtreecommitdiffstats
path: root/src/extract.c
diff options
context:
space:
mode:
authorLennart Poettering <lennart@poettering.net>2005-06-05 20:14:45 +0000
committerLennart Poettering <lennart@poettering.net>2005-06-05 20:14:45 +0000
commitb2972e79c5d11dfa0625bf43838cb65209f7e632 (patch)
treeee45296a668255b7ad63dfc0e0963209a7299093 /src/extract.c
parent37621a019f8fb5e0ac2e506b45279ab7ba67a167 (diff)
* 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
Diffstat (limited to 'src/extract.c')
-rw-r--r--src/extract.c2
1 files changed, 1 insertions, 1 deletions
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;
}