From: simon Date: Mon, 28 Aug 2006 18:27:54 +0000 (+0000) Subject: Eep! Next bit flag after 1 and 2 is _4_, not 3. Perhaps it's time I X-Git-Url: https://git.distorted.org.uk/~mdw/sgt/putty/commitdiff_plain/799e067eeb1273db245552ffad23b6655b62e845 Eep! Next bit flag after 1 and 2 is _4_, not 3. Perhaps it's time I stopped coding and went and sat down quietly and tried not to touch anything for a while. git-svn-id: svn://svn.tartarus.org/sgt/putty@6828 cda61777-01e9-0310-a592-d414129be87e --- diff --git a/windows/winstuff.h b/windows/winstuff.h index 08ebb043..2cc0bb9a 100644 --- a/windows/winstuff.h +++ b/windows/winstuff.h @@ -410,7 +410,7 @@ void init_ucs(Config *, struct unicode_data *); */ #define HANDLE_FLAG_OVERLAPPED 1 #define HANDLE_FLAG_IGNOREEOF 2 -#define HANDLE_FLAG_UNITBUFFER 3 +#define HANDLE_FLAG_UNITBUFFER 4 struct handle; typedef int (*handle_inputfn_t)(struct handle *h, void *data, int len); typedef void (*handle_outputfn_t)(struct handle *h, int new_backlog);