From 5c0f8147ea7f9ebf77ceaca86b122fac886ee742 Mon Sep 17 00:00:00 2001 From: Ramakrishnan Muthukrishnan Date: Sun, 31 May 2015 08:05:59 +0530 Subject: mount.b: load the Dial module without which mount throws an error --- appl/cmd/mount.b | 3 +++ 1 file changed, 3 insertions(+) (limited to 'appl/cmd') 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); -- cgit v1.2.3