We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent 776acaa commit 27cf0afCopy full SHA for 27cf0af
code/espurna/telnet.cpp
@@ -531,7 +531,7 @@ class Client {
531
_cmds.pop_front();
532
533
ExhaustingPrint<Client> print(this);
534
- if (!espurna::terminal::find_and_call(cmd, print)) {
+ if (!espurna::terminal::api_find_and_call(cmd, print)) {
535
_cmds.clear();
536
break;
537
}
code/espurna/terminal.cpp
@@ -478,7 +478,7 @@ void processing_loop() {
478
479
480
481
- find_and_call(result.value, port);
+ api_find_and_call(result.value, port);
482
483
484
0 commit comments