fuse_loop_mt(): on error, return errno rather than -1.
authorNikolaus Rath <Nikolaus@rath.org>
Wed, 23 Aug 2017 21:37:40 +0000 (23:37 +0200)
committerNikolaus Rath <Nikolaus@rath.org>
Wed, 23 Aug 2017 21:38:20 +0000 (23:38 +0200)
ChangeLog.rst
lib/fuse_loop_mt.c

index ce9ffd76cb4dfe1cdfc9a780e34741f261b5f60c..0b3e8865ba661237d88dc3f09440bb710b8c0390 100644 (file)
@@ -1,7 +1,10 @@
 Unreleased Changes
 ==================
 
-* `fuse_loop` no longer returns a positive value if the filesystem
+* `fuse_loop_mt()` now returns the minus the actual errno if there was
+  an error (instead of just -1).
+  
+* `fuse_loop()` no longer returns a positive value if the filesystem
   loop was terminated without errors or signals.
   
 * Improved documentation of `fuse_lowlevel_notify_*` functions.
index 42d3e034095070052faed86980cd67770518343e..74b6c9936e1e08c708e81a0237628c0bf69e813f 100644 (file)
@@ -127,7 +127,7 @@ static void *fuse_do_work(void *data)
                if (res <= 0) {
                        if (res < 0) {
                                fuse_session_exit(mt->se);
-                               mt->error = -1;
+                               mt->error = res;
                        }
                        break;
                }