Email gateway obeys 'Reply-To:' in header.
[egate.git] / www / winterp.c
index 61b0388..c2a7faf 100644 (file)
  * USE OR PERFORMANCE OF THIS SOFTWARE.
  *
  * $Log: winterp.c,v $
- * Revision 1.1  1995/10/20 14:02:41  adam
+ * Revision 1.2  1995/10/23 16:55:38  adam
+ * A lot of changes - really.
+ *
+ * Revision 1.1  1995/10/20  14:02:41  adam
  * First version of WWW gateway with embedded Tcl.
  *
  */
@@ -53,7 +56,7 @@
 
 static char *mod = "winterp";
 
-W_Interp w_interp_create (W_Interp_Type type, void *args)
+W_Interp w_interp_create (W_Interp_Type type, WCLIENT wcl, void *args)
 {
     W_Interp p = malloc (sizeof(*p));
     gw_log (GW_LOG_DEBUG, mod, "Creating w_interp: %s", type->name);
@@ -63,6 +66,6 @@ W_Interp w_interp_create (W_Interp_Type type, void *args)
         exit (1);
     }
     p->ctrl = type;
-    p->mydata = (*p->ctrl->create)(args);
+    p->mydata = (*p->ctrl->create)(wcl, args);
     return p;
 }