telnet: shrink literal string size
text data bss dec hex filename 888483 497 7584 896564 dae34 busybox_old 888450 497 7584 896531 dae13 busybox_unstripped Signed-off-by: Denys Vlasenko <vda.linux@googlemail.com>
This commit is contained in:
parent
aca464ddac
commit
57f07bfcb2
@ -386,20 +386,20 @@ static void put_iac_naws(byte c, int x, int y)
|
||||
}
|
||||
#endif
|
||||
|
||||
static char const escapecharis[] ALIGN1 = "\r\nEscape character is ";
|
||||
|
||||
static void setConMode(void)
|
||||
{
|
||||
if (G.telflags & UF_ECHO) {
|
||||
if (G.charmode == CHM_TRY) {
|
||||
G.charmode = CHM_ON;
|
||||
printf("\r\nEntering character mode%s'^]'.\r\n", escapecharis);
|
||||
printf("\r\nEntering %s mode"
|
||||
"\r\nEscape character is '^%c'.\r\n", "character", ']');
|
||||
rawmode();
|
||||
}
|
||||
} else {
|
||||
if (G.charmode != CHM_OFF) {
|
||||
G.charmode = CHM_OFF;
|
||||
printf("\r\nEntering line mode%s'^C'.\r\n", escapecharis);
|
||||
printf("\r\nEntering %s mode"
|
||||
"\r\nEscape character is '^%c'.\r\n", "line", 'C');
|
||||
cookmode();
|
||||
}
|
||||
}
|
||||
|
Loading…
Reference in New Issue
Block a user