summaryrefslogtreecommitdiff
path: root/appl
diff options
context:
space:
mode:
authorCharles.Forsyth <devnull@localhost>2009-04-01 23:23:08 +0000
committerCharles.Forsyth <devnull@localhost>2009-04-01 23:23:08 +0000
commita3d4017d8d3be485b256b15d2344afac09112204 (patch)
treef8f52c524cf268ca91ebe61846df02013aac6abb /appl
parentbf89820f25b72a8c1fda5bb9790615aa6ecbd005 (diff)
20090402-0022
Diffstat (limited to 'appl')
-rw-r--r--appl/cmd/logfile.b2
-rw-r--r--appl/cmd/ramfile.b2
2 files changed, 2 insertions, 2 deletions
diff --git a/appl/cmd/logfile.b b/appl/cmd/logfile.b
index 6a234d23..e971f7a6 100644
--- a/appl/cmd/logfile.b
+++ b/appl/cmd/logfile.b
@@ -63,7 +63,7 @@ init(nil: ref Draw->Context, argv: list of string)
path := hd argv;
(dir, f) := pathsplit(path);
- if (sys->bind("#s", dir, Sys->MBEFORE|Sys->MCREATE) == -1) {
+ if (sys->bind("#s", dir, Sys->MBEFORE) == -1) {
sys->fprint(stderr, "logfile: bind #s failed: %r\n");
return;
}
diff --git a/appl/cmd/ramfile.b b/appl/cmd/ramfile.b
index 3451d7df..f30a2e58 100644
--- a/appl/cmd/ramfile.b
+++ b/appl/cmd/ramfile.b
@@ -32,7 +32,7 @@ init(nil: ref Draw->Context, argv: list of string)
path := hd tl argv;
(dir, f) := pathsplit(path);
- if (sys->bind("#s", dir, Sys->MBEFORE|Sys->MCREATE) == -1) {
+ if (sys->bind("#s", dir, Sys->MBEFORE) == -1) {
sys->fprint(stderr, "ramfile: %r\n");
return;
}