[Author Prev][Author Next][Thread Prev][Thread Next][Author Index][Thread Index]
[or-cvs] Make windows happier still
Update of /home/or/cvsroot/src/or
In directory moria.mit.edu:/tmp/cvs-serv9512/src/or
Modified Files:
routers.c
Log Message:
Make windows happier still
Index: routers.c
===================================================================
RCS file: /home/or/cvsroot/src/or/routers.c,v
retrieving revision 1.38
retrieving revision 1.39
diff -u -d -r1.38 -r1.39
--- routers.c 30 Jul 2003 19:12:03 -0000 1.38
+++ routers.c 12 Aug 2003 08:18:13 -0000 1.39
@@ -56,7 +56,7 @@
memset(me,0,sizeof(struct sockaddr_in));
me->sin_family = AF_INET;
memcpy((void *)&me->sin_addr,(void *)localhost->h_addr,sizeof(struct in_addr));
- me->sin_port = htons(options.ORPort);
+ me->sin_port = htons((uint16_t) options.ORPort);
log_fn(LOG_DEBUG,"chose address as '%s'.",inet_ntoa(me->sin_addr));
if (!strncmp("127.",inet_ntoa(me->sin_addr), 4) &&
strcasecmp(localhostname, "localhost")) {