diff options
Diffstat (limited to 'loginutils')
-rw-r--r-- | loginutils/getty.c | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/loginutils/getty.c b/loginutils/getty.c index 11eb5a0..e68f2cd 100644 --- a/loginutils/getty.c +++ b/loginutils/getty.c @@ -287,7 +287,7 @@ static int bcode(const char *s) if (safe_strtoul((char *)s, &value)) { return -1; } - if ((r = bb_value_to_baud(value)) > 0) { + if ((r = tty_value_to_baud(value)) > 0) { return r; } return 0; |