]> arthur.barton.de Git - netatalk.git/blobdiff - libatalk/vfs/unix.c
Fix an error when duplicating files that lacked an AppleDouble file which lead to...
[netatalk.git] / libatalk / vfs / unix.c
index 89c2ba1b26e74d93e7aa8f8192f14c8629ea1f75..ffb524b825d88e7b2444a8e5cf742eaf4d5834d6 100644 (file)
@@ -192,13 +192,13 @@ int copy_file(int dirfd, const char *src, const char *dst, mode_t mode)
     sfd = open(src, O_RDONLY);
 #endif
     if (sfd < 0) {
-        LOG(log_error, logtype_afpd, "copy_file('%s'/'%s'): open '%s' error: %s",
+        LOG(log_info, logtype_afpd, "copy_file('%s'/'%s'): open '%s' error: %s",
             src, dst, src, strerror(errno));
         return -1;
     }
 
     if ((dfd = open(dst, O_WRONLY | O_CREAT | O_TRUNC, mode)) < 0) {
-        LOG(log_error, logtype_afpd, "copy_file('%s'/'%s'): open '%s' error: %s",
+        LOG(log_info, logtype_afpd, "copy_file('%s'/'%s'): open '%s' error: %s",
             src, dst, dst, strerror(errno));
         ret = -1;
         goto exit;