]> git.ipfire.org Git - thirdparty/openvpn.git/commitdiff
crypto: correct typ0 in error message
authorAntonio Quartulli <a@unstable.cc>
Tue, 27 Jun 2017 12:00:47 +0000 (20:00 +0800)
committerGert Doering <gert@greenie.muc.de>
Tue, 27 Jun 2017 14:44:54 +0000 (16:44 +0200)
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>
src/openvpn/crypto.c

index 191fee8e0964f8be66d35957dfbb6aaec54351a3..9f2828a4f704409040f74b8b59e76dff3f5b7f06 100644 (file)
@@ -1261,7 +1261,7 @@ read_key_file(struct key2 *key2, const char *file, const unsigned int flags)
         fd = platform_open(file, O_RDONLY, 0);
         if (fd == -1)
         {
-            msg(M_ERR, "Cannot open file key file '%s'", file);
+            msg(M_ERR, "Cannot open key file '%s'", file);
         }
         size = read(fd, in.data, in.capacity);
         if (size < 0)