shithub: unionfs

Download patch

ref: 85595b2b4e755ee0115fd1cdeb234255292f4bd2
parent: a0050ab81f792c2fbfcff6f61fc4f529de2eb1a1
author: kvik <kvik@a-b.xyz>
date: Tue May 14 16:34:32 EDT 2019

missing brace

--- a/unionfs.c
+++ b/unionfs.c
@@ -443,7 +443,7 @@
 		st->dir = filereaddir(f);
 		st->idx = st->dir;
 	}else{
-		if((st->fd = open(f->path, i->mode)) < 0)
+		if((st->fd = open(f->path, i->mode)) < 0){
 			responderror(r);
 			return;
 		}