diff options
author | Guilhem Moulin <guilhem@fripost.org> | 2020-12-13 15:07:30 +0100 |
---|---|---|
committer | Guilhem Moulin <guilhem@fripost.org> | 2020-12-13 15:11:11 +0100 |
commit | b70d9b261a6d2849efeb670b53e0ab726a58fb59 (patch) | |
tree | 41aa9f8fd1464060f249437b41a74d0f728d2bd8 /tests/preauth-plaintext/imapd | |
parent | 2d301be3df763be39d12d214779cf2320b426696 (diff) |
Make error messages more uniform and consistent.
Diffstat (limited to 'tests/preauth-plaintext/imapd')
-rwxr-xr-x | tests/preauth-plaintext/imapd | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/tests/preauth-plaintext/imapd b/tests/preauth-plaintext/imapd index 6196f73..bf2ed72 100755 --- a/tests/preauth-plaintext/imapd +++ b/tests/preauth-plaintext/imapd @@ -39,6 +39,6 @@ while (1) { END { if (defined $S) { shutdown($S, SHUT_RDWR) or warn "shutdown: $!"; - close($S) or print STDERR "Can't close: $!\n"; + close($S) or print STDERR "close: $!\n"; } } |