diff src/rvous.c @ 1092:a930439f29b1

[gaim-migrate @ 1102] fun fun committer: Tailor Script <tailor@pidgin.im>
author Eric Warmenhoven <eric@warmenhoven.org>
date Mon, 13 Nov 2000 04:29:41 +0000
parents 56c7ceb986a8
children d7944415b1cc
line wrap: on
line diff
--- a/src/rvous.c	Mon Nov 13 03:57:40 2000 +0000
+++ b/src/rvous.c	Mon Nov 13 04:29:41 2000 +0000
@@ -37,6 +37,7 @@
 #include <arpa/inet.h>
 #include <errno.h>
 #include <gtk/gtk.h>
+#include "proxy.h"
 #include "gaim.h"
 
 static void do_send_file(GtkWidget *, struct file_transfer *);
@@ -236,7 +237,7 @@
 
 
 	/* XXX is ft->port in host order or network order? */
-	ft->fd = proxy_connect(ft->ip, ft->port, NULL, NULL, -1);
+	ft->fd = proxy_connect(ft->ip, ft->port, NULL, 0, -1);
 
 	if (ft->fd <= -1) {
 		fclose(ft->f);
@@ -515,7 +516,7 @@
 
 
 	/* XXX is ft->port in host order or network order? */
-	ft->fd = proxy_connect(ft->ip, ft->port, NULL, NULL, -1);
+	ft->fd = proxy_connect(ft->ip, ft->port, NULL, 0, -1);
 
 	if (ft->fd <= -1) {
 		free_ft(ft);