diff options
| author | Jochen Sprickerhof <git@jochen.sprickerhof.de> | 2022-10-29 07:46:42 +0200 |
|---|---|---|
| committer | Jochen Sprickerhof <git@jochen.sprickerhof.de> | 2022-10-29 07:46:42 +0200 |
| commit | 4f5ed2ab1256af9b41a94091cdea5cf7c2eaa341 (patch) | |
| tree | ae87feca358984142d91fe984fadc9cef6d57d29 | |
| parent | 1b958661c9081ac92f417ce44da7a55a76360db6 (diff) | |
| download | anypinentry-4f5ed2ab1256af9b41a94091cdea5cf7c2eaa341.tar.gz anypinentry-4f5ed2ab1256af9b41a94091cdea5cf7c2eaa341.zip | |
Don't echo message on BYE
Fixes:
bin/anypinentry: 165: printf: printf: I/O error
| -rwxr-xr-x | anypinentry | 2 |
1 files changed, 1 insertions, 1 deletions
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 ;; |
