aboutsummaryrefslogtreecommitdiff
path: root/src/Sockets.c
diff options
context:
space:
mode:
authorgoodale <goodale@1faa4e14-9dd3-4be0-9f0e-ffe519881164>2000-12-12 15:33:03 +0000
committergoodale <goodale@1faa4e14-9dd3-4be0-9f0e-ffe519881164>2000-12-12 15:33:03 +0000
commita851d857beab7447aac6fffeeaa15ba290f85166 (patch)
tree87f1427a10340b7c1d439560781342b5c82bbb4e /src/Sockets.c
parentdc9f3ab33b548046a15d953cce93617631aa9d12 (diff)
Missed changing an int to a SOCKET a while back.
Tom git-svn-id: http://svn.cactuscode.org/arrangements/CactusConnect/HTTPD/trunk@106 1faa4e14-9dd3-4be0-9f0e-ffe519881164
Diffstat (limited to 'src/Sockets.c')
-rw-r--r--src/Sockets.c4
1 files changed, 2 insertions, 2 deletions
diff --git a/src/Sockets.c b/src/Sockets.c
index 0455d33..7a8b92b 100644
--- a/src/Sockets.c
+++ b/src/Sockets.c
@@ -523,9 +523,9 @@ unsigned long int HTTP_Port(void)
@endhistory
@@*/
-int HTTP_MakeSocket (unsigned long port, int *hunt)
+SOCKET HTTP_MakeSocket (unsigned long port, int *hunt)
{
- int this_sock;
+ SOCKET this_sock;
struct sockaddr_in name;
int opt;
int done;