]> source.dussan.org Git - tigervnc.git/commitdiff
Don't add . to error message string
authorPierre Ossman <ossman@cendio.se>
Tue, 4 Jan 2022 10:02:01 +0000 (11:02 +0100)
committerPierre Ossman <ossman@cendio.se>
Tue, 4 Jan 2022 10:02:01 +0000 (11:02 +0100)
The norm is to have error strings without punctiation, so avoid adding
one as it just confuses the translators.

vncviewer/vncviewer.cxx

index a083f0da3144e4ec71c4d4efe555f6eb081654ca..79dee613692f6bfe413f3abf2149f38e31682e34 100644 (file)
@@ -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;
   }
 }