summaryrefslogtreecommitdiff
path: root/appl/svc/webget/wgutils.b
diff options
context:
space:
mode:
Diffstat (limited to 'appl/svc/webget/wgutils.b')
-rw-r--r--appl/svc/webget/wgutils.b5
1 files changed, 4 insertions, 1 deletions
diff --git a/appl/svc/webget/wgutils.b b/appl/svc/webget/wgutils.b
index 2094f7a3..720edebe 100644
--- a/appl/svc/webget/wgutils.b
+++ b/appl/svc/webget/wgutils.b
@@ -9,6 +9,8 @@ include "string.m";
include "bufio.m";
+include "dial.m";
+
include "imagefile.m";
readgif, readjpg, readxbitmap: RImagefile;
@@ -98,7 +100,7 @@ mnames := array[] of {
"text/xml"
};
-init(m: Message, s: String, b: Bufio, u: Url, lfd: ref Sys->FD)
+init(m: Message, s: String, b: Bufio, u: Url, di: Dial, lfd: ref Sys->FD)
{
sys = load Sys Sys->PATH;
@@ -106,6 +108,7 @@ init(m: Message, s: String, b: Bufio, u: Url, lfd: ref Sys->FD)
S = s;
B = b;
U = u;
+ DI = di;
logfd = lfd;
T = load StringIntTab StringIntTab->PATH;
readgif = load RImagefile RImagefile->READGIFPATH;