diff options
author | Christopher Faylor <me@cgf.cx> | 2000-09-26 00:52:21 +0000 |
---|---|---|
committer | Christopher Faylor <me@cgf.cx> | 2000-09-26 00:52:21 +0000 |
commit | 4eafa56ec21fe0f92d28ec65abf53a44e8730b4d (patch) | |
tree | e1ed89a3b6a191acacca7784c5e66eb83b38b0e6 /winsup/cygwin/fhandler.h | |
parent | ef42416e99500d963cb7a1925b1028ceda9cc29a (diff) | |
download | cygnal-4eafa56ec21fe0f92d28ec65abf53a44e8730b4d.tar.gz cygnal-4eafa56ec21fe0f92d28ec65abf53a44e8730b4d.tar.bz2 cygnal-4eafa56ec21fe0f92d28ec65abf53a44e8730b4d.zip |
* dcrt0.cc (quoted): Fix problem where ' quoted strings were skipped.
* fhandler.h (fhandler_socket::~fhandler_socket): Delete declaration.
* net.cc: Remove unnecessary "number_of_sockets" usage.
(fhandler_socket::fhandler_socket): Ditto.
(fhandler_socket::~fhandler_socket): Delete definition.
* spawn.cc (spawn_guts): Force first argument passed to CreateProcess as a
command line to be windows style.
Diffstat (limited to 'winsup/cygwin/fhandler.h')
-rw-r--r-- | winsup/cygwin/fhandler.h | 1 |
1 files changed, 0 insertions, 1 deletions
diff --git a/winsup/cygwin/fhandler.h b/winsup/cygwin/fhandler.h index df9153e9d..d3fc19565 100644 --- a/winsup/cygwin/fhandler.h +++ b/winsup/cygwin/fhandler.h @@ -314,7 +314,6 @@ private: public: fhandler_socket (const char *name = 0); fhandler_socket (unsigned int, const char *name = 0); - ~fhandler_socket (); int get_socket () const { return (int) get_handle(); } fhandler_socket * is_socket () { return this; } int write (const void *ptr, size_t len); |