diff options
author | Daniel Stenberg <daniel@haxx.se> | 2005-09-06 10:39:01 +0000 |
---|---|---|
committer | Daniel Stenberg <daniel@haxx.se> | 2005-09-06 10:39:01 +0000 |
commit | e8b77477c7c12ce800accb7399c0e4c2b18df794 (patch) | |
tree | 250adbe29cc1e7dd75f6651c49616b41e12ae64a | |
parent | 64298e528d436cfc0f5ae14ddf39768f57c648e5 (diff) |
sockets are curl_socket_t to build cleaner
-rw-r--r-- | lib/tftp.c | 2 |
1 files changed, 1 insertions, 1 deletions
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; |