diff options
Diffstat (limited to 'tftp.c')
-rw-r--r-- | tftp.c | 2 |
1 files changed, 1 insertions, 1 deletions
@@ -116,7 +116,7 @@ static inline int tftp(int cmd, struct hostent *host, len = sizeof(sa); memset(&sa, 0, len); - bind(socketfd, &sa, len); + bind(socketfd, (struct sockaddr *)&sa, len); sa.sin_family = host->h_addrtype; sa.sin_port = htons(port); |