From 9f004a9ea97dd456dced1c4607da76924aa47870 Mon Sep 17 00:00:00 2001 From: Wayne Davison Date: Tue, 21 Sep 2004 09:24:06 +0000 Subject: [PATCH] The delete_one() function no longer needs to handle the case where it thinks it is removing a directory and it is really removing a symlink. --- receiver.c | 4 ---- 1 file changed, 4 deletions(-) diff --git a/receiver.c b/receiver.c index 7b86938d..3ce55286 100644 --- a/receiver.c +++ b/receiver.c @@ -65,10 +65,6 @@ static void delete_one(char *fn, int is_dir) rprintf(FINFO, "deleting %s\n", safe_fname(fn)); } else { if (do_rmdir(fn) != 0) { - if (errno == ENOTDIR && keep_dirlinks) { - delete_one(fn, 0); - return; - } if (errno != ENOTEMPTY && errno != EEXIST) { rsyserr(FERROR, errno, "delete_one: rmdir %s failed", -- 2.34.1