diff --git a/lib/modules/Stdio.pmod/module.pmod b/lib/modules/Stdio.pmod/module.pmod
index c3926cf3ca2f358c15cab5f19c8481d802bb189e..3f62bbdda6c26ca1181623fbb4cc1daf8a3ecc6d 100644
--- a/lib/modules/Stdio.pmod/module.pmod
+++ b/lib/modules/Stdio.pmod/module.pmod
@@ -1,4 +1,4 @@
-// $Id: module.pmod,v 1.41 1999/04/01 15:45:02 grubba Exp $
+// $Id: module.pmod,v 1.42 1999/04/01 18:32:37 grubba Exp $
 
 import String;
 
@@ -112,10 +112,10 @@ class File
     int res;
     if (err = catch(res = connect(host, port))) {
       // Illegal format. -- Bad hostname?
-      call_out(_async_failed(), 0);
+      call_out(_async_failed, 0);
     } else if (!res) {
       // Connect failed.
-      call_out(_async_failed(), 0);
+      call_out(_async_failed, 0);
     }
     return(1);	// OK so far. (Or rather the callback will be used).
   }