From b36d32b88169ca3f155d0d3f8e4cf7bb3f7b60fa Mon Sep 17 00:00:00 2001 From: Jacob Nevins Date: Mon, 14 Mar 2005 01:56:39 +0000 Subject: [PATCH] Consistent indenting in option specs [originally from svn r5502] --- telnet.c | 10 ++++------ 1 file changed, 4 insertions(+), 6 deletions(-) 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 =