From: Pierre Ossman Date: Tue, 4 Jan 2022 10:02:01 +0000 (+0100) Subject: Don't add . to error message string X-Git-Tag: v1.12.90~67 X-Git-Url: https://source.dussan.org/?a=commitdiff_plain;h=f2d37e61c793b5c60363917a86369f9cd6cb6d0e;p=tigervnc.git Don't add . to error message string The norm is to have error strings without punctiation, so avoid adding one as it just confuses the translators. --- diff --git a/vncviewer/vncviewer.cxx b/vncviewer/vncviewer.cxx index a083f0da..79dee613 100644 --- a/vncviewer/vncviewer.cxx +++ b/vncviewer/vncviewer.cxx @@ -467,7 +467,7 @@ static void mkvnchomedir() } else { int result = mkdir(homeDir, 0755); if (result == -1 && errno != EEXIST) - vlog.error(_("Could not create VNC home directory: %s."), strerror(errno)); + vlog.error(_("Could not create VNC home directory: %s"), strerror(errno)); delete [] homeDir; } }