From 9c624516416b0a4efd3da7924ffe794ee58a364a Mon Sep 17 00:00:00 2001 From: Nikunj A Dadhania Date: Thu, 26 Sep 2013 16:12:32 +0530 Subject: ci: add missing close in else condition The code in close for calling quiesce looks if there is stdin and checks whether is being closed. That condition was being used to call quiesce. So in case when the ihandle is not that of stdin, close-dev was missing. Signed-off-by: Nikunj A Dadhania --- slof/fs/client.fs | 2 ++ 1 file changed, 2 insertions(+) diff --git a/slof/fs/client.fs b/slof/fs/client.fs index b4a8bb3..c80887b 100644 --- a/slof/fs/client.fs +++ b/slof/fs/client.fs @@ -196,6 +196,8 @@ ALSO client-voc DEFINITIONS \ is an undocumented extension and not everybody supports it close-dev quiesce + ELSE + close-dev THEN ELSE close-dev -- cgit v1.1