mirror of
https://github.com/asterisk/asterisk.git
synced 2025-09-06 04:30:28 +00:00
Don't hang if the command is blank
git-svn-id: https://origsvn.digium.com/svn/asterisk/trunk@125583 65c4cc65-6c06-0410-ace0-fbb531ad65f3
This commit is contained in:
@@ -101,7 +101,7 @@ if ($action eq '-' || !defined $action || $action eq '') {
|
|||||||
$attribs->{completion_function} = \&tab_completion;
|
$attribs->{completion_function} = \&tab_completion;
|
||||||
while (defined($_ = $term->readline($prompt))) {
|
while (defined($_ = $term->readline($prompt))) {
|
||||||
(logoff() and exit) if $_ =~ /exit|quit/; # Give them a way to exit the "terminal"
|
(logoff() and exit) if $_ =~ /exit|quit/; # Give them a way to exit the "terminal"
|
||||||
print send_command($_);
|
print send_command($_) if $_ !~ m/^\s*$/;
|
||||||
}
|
}
|
||||||
} else {
|
} else {
|
||||||
while (<>) {
|
while (<>) {
|
||||||
|
Reference in New Issue
Block a user