From 8cd533888012e5fb25f05380221e6415132a64dd Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Fredrik=20H=C3=BCbinette=20=28Hubbe=29?= <hubbe@hubbe.net> Date: Wed, 7 Jul 1999 00:35:23 -0700 Subject: [PATCH] bugfix Rev: lib/modules/Protocols.pmod/SMTP.pmod:1.9 Rev: tutorial/Makefile:1.34 --- lib/modules/Protocols.pmod/SMTP.pmod | 2 +- tutorial/Makefile | 2 +- 2 files changed, 2 insertions(+), 2 deletions(-) diff --git a/lib/modules/Protocols.pmod/SMTP.pmod b/lib/modules/Protocols.pmod/SMTP.pmod index c2324b7aa4..5ceac24002 100644 --- a/lib/modules/Protocols.pmod/SMTP.pmod +++ b/lib/modules/Protocols.pmod/SMTP.pmod @@ -87,7 +87,7 @@ class client static string parse_addr(string addr) { - array(string|int) tokens = replace(MIME.tokenize(to), '@', "@"); + array(string|int) tokens = replace(MIME.tokenize(addr), '@', "@"); int i; tokens = tokens[search(tokens, '<') + 1..]; diff --git a/tutorial/Makefile b/tutorial/Makefile index 864e7d871d..2c1041af7f 100644 --- a/tutorial/Makefile +++ b/tutorial/Makefile @@ -60,7 +60,7 @@ tutorial.dvi: tutorial.tex latex tutorial.tex tutorial.ps: tutorial.dvi - dvips -Z tutorial.dvi + dvips -Z tutorial.dvi -o tutorial.ps tutorial.ps.gz: tutorial.ps gzip -9 <tutorial.ps >tutorial.ps.gz -- GitLab