From: jacob Date: Mon, 14 Mar 2005 01:56:39 +0000 (+0000) Subject: Consistent indenting in option specs X-Git-Url: https://git.distorted.org.uk/u/mdw/putty/commitdiff_plain/5f95fdf1635ee92d80711c264f3dd2fa27f7d5c1?hp=414ffbaad889eac24361544b8670c88aba2f0c00 Consistent indenting in option specs git-svn-id: svn://svn.tartarus.org/sgt/putty@5502 cda61777-01e9-0310-a592-d414129be87e --- diff --git a/telnet.c b/telnet.c index 36c0f723..54b9a7c7 100644 --- a/telnet.c +++ b/telnet.c @@ -196,12 +196,10 @@ static const struct Opt o_tspeed = { WILL, WONT, DO, DONT, TELOPT_TSPEED, OPTINDEX_TSPEED, REQUESTED }; static const struct Opt o_ttype = { WILL, WONT, DO, DONT, TELOPT_TTYPE, OPTINDEX_TTYPE, REQUESTED }; -static const struct Opt o_oenv = { WILL, WONT, DO, DONT, TELOPT_OLD_ENVIRON, - OPTINDEX_OENV, INACTIVE -}; -static const struct Opt o_nenv = { WILL, WONT, DO, DONT, TELOPT_NEW_ENVIRON, - OPTINDEX_NENV, REQUESTED -}; +static const struct Opt o_oenv = + { WILL, WONT, DO, DONT, TELOPT_OLD_ENVIRON, OPTINDEX_OENV, INACTIVE }; +static const struct Opt o_nenv = + { WILL, WONT, DO, DONT, TELOPT_NEW_ENVIRON, OPTINDEX_NENV, REQUESTED }; static const struct Opt o_echo = { DO, DONT, WILL, WONT, TELOPT_ECHO, OPTINDEX_ECHO, REQUESTED }; static const struct Opt o_we_sga =