diff options
author | Christopher Faylor <me@cgf.cx> | 2005-12-22 05:57:54 +0000 |
---|---|---|
committer | Christopher Faylor <me@cgf.cx> | 2005-12-22 05:57:54 +0000 |
commit | de935f6d9feb4a671580ad0f685a810749e8ab02 (patch) | |
tree | c9df2c01bc228f9f6f5e486efe559a9f8ef56905 /winsup/cygwin/net.cc | |
parent | 718dee922f2a168f752a7bceb93f85d114aaceb7 (diff) | |
download | cygnal-de935f6d9feb4a671580ad0f685a810749e8ab02.tar.gz cygnal-de935f6d9feb4a671580ad0f685a810749e8ab02.tar.bz2 cygnal-de935f6d9feb4a671580ad0f685a810749e8ab02.zip |
whitespace cleanup to force snapshot.
Diffstat (limited to 'winsup/cygwin/net.cc')
-rw-r--r-- | winsup/cygwin/net.cc | 6 |
1 files changed, 3 insertions, 3 deletions
diff --git a/winsup/cygwin/net.cc b/winsup/cygwin/net.cc index 655cb1105..a3fde3019 100644 --- a/winsup/cygwin/net.cc +++ b/winsup/cygwin/net.cc @@ -681,10 +681,10 @@ cygwin_setsockopt (int fd, int level, int optname, const void *optval, { /* Old applications still use the old Winsock1 IPPROTO_IP values. */ if (level == IPPROTO_IP && CYGWIN_VERSION_CHECK_FOR_USING_WINSOCK1_VALUES) - optname = convert_ws1_ip_optname (optname); + optname = convert_ws1_ip_optname (optname); /* FOR THE RECORDS: - Setting IP_TOS is disabled by default since W2K, the official + Setting IP_TOS is disabled by default since W2K, the official reason being that IP_TOS setting would interfere with Windows QOS settings. As result, setsockopt returns with WinSock error 10022, WSAEINVAL, when running under W2K or later, instead of @@ -731,7 +731,7 @@ cygwin_getsockopt (int fd, int level, int optname, void *optval, int *optlen) { /* Old applications still use the old Winsock1 IPPROTO_IP values. */ if (level == IPPROTO_IP && CYGWIN_VERSION_CHECK_FOR_USING_WINSOCK1_VALUES) - optname = convert_ws1_ip_optname (optname); + optname = convert_ws1_ip_optname (optname); res = getsockopt (fh->get_socket (), level, optname, (char *) optval, (int *) optlen); |