summaryrefslogtreecommitdiffstats
path: root/src/util.c
diff options
context:
space:
mode:
authorLennart Poettering <lennart@poettering.net>2005-06-06 13:59:32 +0000
committerLennart Poettering <lennart@poettering.net>2005-06-06 13:59:32 +0000
commitf458511ece586b012a531dd7bc095ebc6be97b1e (patch)
treebd5db4e59e67caf28df4d82a24b22d95c7a70a3a /src/util.c
parent5a5b68ba1d9f206e6592e22d8a2904b46a65667c (diff)
remove an uneeded warning
git-svn-id: file:///home/lennart/svn/public/syrep/trunk@81 07ea20a6-d2c5-0310-9e02-9ef735347d72
Diffstat (limited to 'src/util.c')
-rw-r--r--src/util.c2
1 files changed, 1 insertions, 1 deletions
diff --git a/src/util.c b/src/util.c
index a8b55af..4eebd1a 100644
--- a/src/util.c
+++ b/src/util.c
@@ -495,7 +495,7 @@ int copy_or_link_file(const char *src, const char *dst, int c) {
if (errno == EXDEV || errno == EPERM)
return copy_file(src, dst, c);
- fprintf(stderr, "link(%s, %s): %s\n", src, dst, strerror(errno));
+/* fprintf(stderr, "link(%s, %s): %s\n", src, dst, strerror(errno)); */
return -1;
}