From bee40b77fc98991b4b6ef33b1e738915bc989ff0 Mon Sep 17 00:00:00 2001 From: Mike Date: Sat, 1 Jan 2000 00:17:35 +0900 Subject: rename "polarity" variables to "inverted" for clarity --- parser.c | 8 ++++---- 1 file changed, 4 insertions(+), 4 deletions(-) (limited to 'parser.c') diff --git a/parser.c b/parser.c index 5ce7efe..04ff5bc 100644 --- a/parser.c +++ b/parser.c @@ -2128,7 +2128,7 @@ static int Go_polarity_42(gchar** response, int channel, char *parameter,char *u { int status; - if (status = check_channel_ok (channel, globals.Flash.channels, globals.Flash.ChanKey_polarity)) { + if (status = check_channel_ok (channel, globals.Flash.channels, globals.Flash.ChanKey_inverted)) { return status; } if (!(globals.Flash.invert_allowed[channel])) { @@ -2138,19 +2138,19 @@ static int Go_polarity_42(gchar** response, int channel, char *parameter,char *u switch (command_type) { case command_withparam: if (!strcmp(parameter,"norm") || !strcmp(parameter,"normal")) { - return Set_Pol(channel,pol_norm); + return Set_Inverted(channel,pol_norm); } else if (!strcmp(parameter,"comp") || !strcmp(parameter,"complement") || !strcmp(parameter,"inv") || !strcmp(parameter,"inverted") ) { - return Set_Pol(channel,pol_complement); + return Set_Inverted(channel,pol_complement); } else { return SyntaxError; } break; case query_simple: - if (globals.ChannelState[channel].polarity==pol_norm) { + if (globals.ChannelState[channel].inverted==pol_norm) { return query_string(response, "NORM"); } else { return query_string(response, "COMP"); -- cgit