From 8101eb486f042773eeabda0a34c44f9a5fdb21e4 Mon Sep 17 00:00:00 2001 From: Jeff Hill Date: Mon, 20 Nov 2000 21:17:14 +0000 Subject: [PATCH] fixed comment --- src/rsrv/caservertask.c | 10 +++++----- 1 file changed, 5 insertions(+), 5 deletions(-) diff --git a/src/rsrv/caservertask.c b/src/rsrv/caservertask.c index 57eb3f599..8128c8607 100644 --- a/src/rsrv/caservertask.c +++ b/src/rsrv/caservertask.c @@ -332,11 +332,11 @@ LOCAL int req_server (void) status = bind ( IOC_sock, (struct sockaddr *) &serverAddr, sizeof ( serverAddr ) ); if ( status < 0 ) { if ( SOCKERRNO == SOCK_EADDRINUSE ) { - // - // enable assignment of a default port - // (so the getsockname() call below will - // work correctly) - // + /* + * enable assignment of a default port + * (so the getsockname() call below will + * work correctly) + */ serverAddr.sin_port = ntohs (0); status = bind ( IOC_sock, (struct sockaddr *) &serverAddr, sizeof ( serverAddr ) );