From f4a014cac9abd84096929615f0e22a45de6ca5f8 Mon Sep 17 00:00:00 2001 From: Jeremy Ellington Date: Fri, 30 Jul 2004 15:44:55 +0000 Subject: [PATCH] Use upper case B for sending breaks --- ipmitool/lib/ipmi_sol.c | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/ipmitool/lib/ipmi_sol.c b/ipmitool/lib/ipmi_sol.c index bd9fe6f..42bb18c 100644 --- a/ipmitool/lib/ipmi_sol.c +++ b/ipmitool/lib/ipmi_sol.c @@ -935,7 +935,7 @@ printSolEscapeSequences() %c. - terminate connection\r\n\ %c^Z - suspend ipmitool\r\n\ %c^X - suspend ipmitool, but don't restore tty on restart\r\n\ - %cb - send break\r\n\ + %cB - send break\r\n\ %c? - this message\r\n\ %c%c - send the escape character by typing it twice\r\n\ (Note that escapes are only recognized immediately after newline.)\r\n", @@ -1064,7 +1064,7 @@ processSolUserInput( suspendSelf(0); /* Don't restore to raw mode */ continue; - case 'b': + case 'B': printf("%cb [send break]\r\n", SOL_ESCAPE_CHARACTER); sendBreak(intf); continue;