summaryrefslogtreecommitdiff
path: root/appl/cmd
diff options
context:
space:
mode:
authorRamakrishnan Muthukrishnan <ram@rkrishnan.org>2015-05-31 08:05:59 +0530
committerRamakrishnan Muthukrishnan <ram@rkrishnan.org>2015-05-31 08:05:59 +0530
commit5c0f8147ea7f9ebf77ceaca86b122fac886ee742 (patch)
tree3be64691b15091e067e0942ff0b2c4baa4b05255 /appl/cmd
parent19c1b9563e510e86f2b7b53748f60f8ac761e845 (diff)
mount.b: load the Dial module without which mount throws an error
Diffstat (limited to 'appl/cmd')
-rw-r--r--appl/cmd/mount.b3
1 files changed, 3 insertions, 0 deletions
diff --git a/appl/cmd/mount.b b/appl/cmd/mount.b
index 9cac7da5..d41cb169 100644
--- a/appl/cmd/mount.b
+++ b/appl/cmd/mount.b
@@ -45,6 +45,9 @@ nomod(mod: string)
init(ctxt: ref Draw->Context, args: list of string)
{
sys = load Sys Sys->PATH;
+ dial = load Dial Dial->PATH;
+ if(dial == nil)
+ nomod(Dial->PATH);
arg := load Arg Arg->PATH;
if(arg == nil)
nomod(Arg->PATH);