You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
src/main.c:206:39: warning: result of comparison of constant -1 with expression of type 'char' is always true [-Wtautological-constant-out-of-range-compare]
&long_index)) != -1) {
Unfortunately, this small error means that we always take the error path at
if (parse_arg_list(all_argc, all_argv, &fuse_argv, &fuse_argc)) {
/*
* The user basically didn't supply enough arguments, if we reach here
* The point is to print some error messages
*/
goto fuse_start;
and, crucially, skip over the rest of the setup, both of the mountpoint and the network. For maximum confusion, though, because we haven't actually done anything wrong (because we haven't done anything at all, in some sense), the process ends up parked reading from /dev/fuse as it should, but without the mountpoint established, so it's listening for a message that's never coming.
The text was updated successfully, but these errors were encountered:
httpdirfs/src/main.c
Line 172 in d1a10d4
int
, notchar
, so that the comparison to-1
inhttpdirfs/src/main.c
Lines 204 to 206 in d1a10d4
Unfortunately, this small error means that we always take the error path at
httpdirfs/src/main.c
Lines 76 to 81 in d1a10d4
/dev/fuse
as it should, but without the mountpoint established, so it's listening for a message that's never coming.The text was updated successfully, but these errors were encountered: