diff options
| -rw-r--r-- | tools/idevicebackup4.c | 3 | 
1 files changed, 2 insertions, 1 deletions
| diff --git a/tools/idevicebackup4.c b/tools/idevicebackup4.c index 4aa0d46..0d18338 100644 --- a/tools/idevicebackup4.c +++ b/tools/idevicebackup4.c @@ -548,7 +548,8 @@ static int mb2_handle_send_file(const char *backup_dir, const char *path, plist_  	}  	if (stat(localfile, &fst) < 0) { -		printf("%s: stat failed on '%s': %d\n", __func__, localfile, errno); +		if (errno != ENOENT) +			printf("%s: stat failed on '%s': %d\n", __func__, localfile, errno);  		errcode = errno;  		goto leave;  	} | 
