bug fix for trailing slash variant 1.2
authorRalph Ronnquist <rrq@rrq.au>
Sat, 19 Aug 2023 08:11:59 +0000 (18:11 +1000)
committerRalph Ronnquist <rrq@rrq.au>
Sat, 19 Aug 2023 08:11:59 +0000 (18:11 +1000)
fusefile.c

index c8964f4d580bf1a99bd7085c9d14869b77962dbd..b406ce31c8bf19ffbe0b60021488c6c55ff2fc7a 100644 (file)
@@ -329,7 +329,7 @@ static int setup_source(struct Source *p,char *frag) {
        perror( p->filename );
        return 1; // Error return
     }
-    if ( ( range == 0 ) && stat( p->filename, &filestat ) ) {
+    if ( ( range != 0 ) && stat( p->filename, &filestat ) ) {
        perror( p->filename );
        return 1; 
     }