summaryrefslogtreecommitdiff
path: root/src/cp-hash.c
diff options
context:
space:
mode:
Diffstat (limited to 'src/cp-hash.c')
-rw-r--r--src/cp-hash.c3
1 files changed, 1 insertions, 2 deletions
diff --git a/src/cp-hash.c b/src/cp-hash.c
index 6c3bc30f0..8c07923fd 100644
--- a/src/cp-hash.c
+++ b/src/cp-hash.c
@@ -20,7 +20,6 @@
#include <config.h>
#include <stdio.h>
#include "cp.h"
-#include "safe-stat.h"
char *hash_insert ();
char *hash_insert2 ();
@@ -37,7 +36,7 @@ remember_created (path)
{
struct stat sb;
- if (safe_stat (path, &sb) < 0)
+ if (stat (path, &sb) < 0)
{
error (0, errno, "%s", path);
return 1;