We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent 2aa8864 commit 56ef98fCopy full SHA for 56ef98f
Applications/util/cu.c
@@ -108,7 +108,7 @@ static void quit()
108
static int parsespeed(char *str, speed_t *s)
109
{
110
register int i;
111
- register int b = atoi(optarg);
+ register int b = atoi(str);
112
for (i = 0; i < sizeof(baud) / sizeof(baud[0]); i++)
113
114
if (baud[i] == b)
@@ -132,6 +132,7 @@ int main(int argc, char *argv[])
132
char escchar = '~';
133
int opt;
134
char *remotename = NULL;
135
+ char escStr[3];
136
137
if (isatty(0) != 1)
138
@@ -226,7 +227,6 @@ int main(int argc, char *argv[])
226
227
uint_fast8_t is_nl = 1;
228
uint_fast8_t w;
229
atexit(restore);
- char escStr[3];
230
if (escchar <= 0x1A)
231
232
escStr[0] = '^';
0 commit comments