View | Details | Raw Unified | Return to bug 247009
Collapse All | Expand All

(-)files/patch-kiofusevfs.cpp (+12 lines)
Line 0 Link Here
1
--- kiofusevfs.cpp.orig	2020-06-05 16:51:15 UTC
2
+++ kiofusevfs.cpp
3
@@ -2320,7 +2320,9 @@ int KIOFuseVFS::kioErrorToFuseError(const int kioError
4
 		case KIO::ERR_CANNOT_RENAME_PARTIAL        : return EIO;
5
 		case KIO::ERR_NEED_PASSWD                  : return EACCES;
6
 		case KIO::ERR_CANNOT_SYMLINK               : return EIO;
7
+#ifdef ENODATA
8
 		case KIO::ERR_NO_CONTENT                   : return ENODATA;
9
+#endif
10
 		case KIO::ERR_DISK_FULL                    : return ENOSPC;
11
 		case KIO::ERR_IDENTICAL_FILES              : return EEXIST;
12
 		case KIO::ERR_SLAVE_DEFINED                : return EIO;

Return to bug 247009