From e8b77477c7c12ce800accb7399c0e4c2b18df794 Mon Sep 17 00:00:00 2001 From: Daniel Stenberg Date: Tue, 6 Sep 2005 10:39:01 +0000 Subject: [PATCH] sockets are curl_socket_t to build cleaner --- lib/tftp.c | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/lib/tftp.c b/lib/tftp.c index bf50a80ef..4cdbdc22e 100644 --- a/lib/tftp.c +++ b/lib/tftp.c @@ -147,7 +147,7 @@ typedef struct tftp_state_data { tftp_mode_t mode; tftp_error_t error; struct connectdata *conn; - int sockfd; + curl_socket_t sockfd; int retries; int retry_time; int retry_max;