summaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorkrw <krw@openbsd.org>2018-07-10 16:42:12 +0000
committerkrw <krw@openbsd.org>2018-07-10 16:42:12 +0000
commit7ef8f1c3dc019ffe8b3170db5aa21957268b4bab (patch)
tree9ecad3e9dbdafd0a29f65d4d6fbc2b35f154086c
parentImport rad(8). (diff)
downloadwireguard-openbsd-7ef8f1c3dc019ffe8b3170db5aa21957268b4bab.tar.xz
wireguard-openbsd-7ef8f1c3dc019ffe8b3170db5aa21957268b4bab.zip
"%%s: s" -> "%s: %s" in log_warn()
-rw-r--r--usr.sbin/eigrpd/parse.y4
1 files changed, 2 insertions, 2 deletions
diff --git a/usr.sbin/eigrpd/parse.y b/usr.sbin/eigrpd/parse.y
index 7a731c3053e..972a6b2542c 100644
--- a/usr.sbin/eigrpd/parse.y
+++ b/usr.sbin/eigrpd/parse.y
@@ -1,4 +1,4 @@
-/* $OpenBSD: parse.y,v 1.25 2018/07/09 12:05:11 krw Exp $ */
+/* $OpenBSD: parse.y,v 1.26 2018/07/10 16:42:12 krw Exp $ */
/*
* Copyright (c) 2015 Renato Westphal <renato@openbsd.org>
@@ -946,7 +946,7 @@ pushfile(const char *name, int secret)
return (NULL);
}
if ((nfile->stream = fopen(nfile->name, "r")) == NULL) {
- log_warn("%%s: s", __func__, nfile->name);
+ log_warn("%s: %s", __func__, nfile->name);
free(nfile->name);
free(nfile);
return (NULL);