summaryrefslogtreecommitdiffstats
path: root/lib/fd.sh
diff options
context:
space:
mode:
authorP. J. McDermott <pjm@nac.net>2013-10-26 18:09:21 (EDT)
committer P. J. McDermott <pjm@nac.net>2013-10-26 18:09:21 (EDT)
commitba3e7518944a033ad0112085b2d7803006241209 (patch)
tree479b61b50bc8c5b05b7d312786735f6693b26b1d /lib/fd.sh
parentddc4138f41e892d7e665a04217d6c0c4108c132e (diff)
fopen(): Exit on failure.
Diffstat (limited to 'lib/fd.sh')
-rw-r--r--lib/fd.sh3
1 files changed, 1 insertions, 2 deletions
diff --git a/lib/fd.sh b/lib/fd.sh
index 0f78a40..95d68b6 100644
--- a/lib/fd.sh
+++ b/lib/fd.sh
@@ -74,8 +74,7 @@ fopen()
FD="${fd}"
return 0
else
- FD=''
- return 1
+ error 2 "$(get_msg 'cant_fopen')"
fi
}