Browse code

crypto: correct typ0 in error message

Signed-off-by: Antonio Quartulli <a@unstable.cc>
Acked-by: Steffan Karger <steffan.karger@fox-it.com>
Message-Id: <20170627120047.12304-1-a@unstable.cc>
URL: https://www.mail-archive.com/openvpn-devel@lists.sourceforge.net/msg14975.html
Signed-off-by: Gert Doering <gert@greenie.muc.de>

Antonio Quartulli authored on 2017/06/27 21:00:47
Showing 1 changed files
... ...
@@ -1261,7 +1261,7 @@ read_key_file(struct key2 *key2, const char *file, const unsigned int flags)
1261 1261
         fd = platform_open(file, O_RDONLY, 0);
1262 1262
         if (fd == -1)
1263 1263
         {
1264
-            msg(M_ERR, "Cannot open file key file '%s'", file);
1264
+            msg(M_ERR, "Cannot open key file '%s'", file);
1265 1265
         }
1266 1266
         size = read(fd, in.data, in.capacity);
1267 1267
         if (size < 0)