From 4f5ed2ab1256af9b41a94091cdea5cf7c2eaa341 Mon Sep 17 00:00:00 2001 From: Jochen Sprickerhof Date: Sat, 29 Oct 2022 07:46:42 +0200 Subject: Don't echo message on BYE Fixes: bin/anypinentry: 165: printf: printf: I/O error --- anypinentry | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/anypinentry b/anypinentry index f0274cc..6eab83e 100755 --- a/anypinentry +++ b/anypinentry @@ -157,7 +157,7 @@ interpret_command() { NOP) ;; CANCEL) not_implemented_error ;; OPTION) save_option "$data" ;; - BYE) echo "OK closing connection"; exit 0 ;; + BYE) exit 0 ;; AUTH) not_implemented_error ;; RESET) reset ;; END) not_implemented_error ;; -- cgit v1.3.1