Miscellaneous fixes to finish up `remove-statics'. rlogin.c had a
[u/mdw/putty] / telnet.c
index 2d87b31..91d0cab 100644 (file)
--- a/telnet.c
+++ b/telnet.c
@@ -689,7 +689,7 @@ static char *telnet_init(void *frontend_handle, void **backend_handle,
        logevent(telnet->frontend, buf);
        sfree(buf);
     }
-    addr = name_lookup(host, port, realhost);
+    addr = name_lookup(host, port, realhost, &telnet->cfg);
     if ((err = sk_addr_error(addr)) != NULL)
        return err;
 
@@ -707,7 +707,7 @@ static char *telnet_init(void *frontend_handle, void **backend_handle,
        sfree(buf);
     }
     telnet->s = new_connection(addr, *realhost, port, 0, 1,
-                              nodelay, (Plug) telnet);
+                              nodelay, (Plug) telnet, &telnet->cfg);
     if ((err = sk_socket_error(telnet->s)) != NULL)
        return err;
 
@@ -758,10 +758,10 @@ static int telnet_send(void *handle, char *buf, int len)
 {
     Telnet telnet = (Telnet) handle;
     unsigned char *p, *end;
-    static unsigned char iac[2] = { IAC, IAC };
-    static unsigned char cr[2] = { CR, NUL };
+    static const unsigned char iac[2] = { IAC, IAC };
+    static const unsigned char cr[2] = { CR, NUL };
 #if 0
-    static unsigned char nl[2] = { CR, LF };
+    static const unsigned char nl[2] = { CR, LF };
 #endif
 
     if (telnet->s == NULL)