From: Vadim Zeitlin Date: Tue, 30 Nov 1999 22:21:18 +0000 (+0000) Subject: one day people will stop putting C++ comments in C files X-Git-Url: https://git.saurik.com/wxWidgets.git/commitdiff_plain/52a550200431778ae492a8f7ea149a072feac12a one day people will stop putting C++ comments in C files git-svn-id: https://svn.wxwidgets.org/svn/wx/wxWidgets/trunk@4781 c3d73ce0-8a6f-49c7-b76d-6d57e0e08775 --- diff --git a/src/unix/gsocket.c b/src/unix/gsocket.c index dd25f30b46..d22b5bf23f 100644 --- a/src/unix/gsocket.c +++ b/src/unix/gsocket.c @@ -1089,8 +1089,10 @@ GSocketError _GAddress_Init_INET(GAddress *address) address->m_family = GSOCK_INET; address->m_realfamily = PF_INET; ((struct sockaddr_in *)address->m_addr)->sin_family = AF_INET; - // INADDR_BROADCAST is identical to INADDR_NONE which is not defined - // on all unices. INADDR_BROADCAST should be fine to indicate an error. (KB) + /* + INADDR_BROADCAST is identical to INADDR_NONE which is not defined + on all unices. INADDR_BROADCAST should be fine to indicate an error. + */ ((struct sockaddr_in *)address->m_addr)->sin_addr.s_addr = INADDR_BROADCAST; return GSOCK_NOERROR;