summaryrefslogtreecommitdiff
path: root/usr.sbin/ospfd/parse.y
diff options
context:
space:
mode:
authorKenneth R Westerback <krw@cvs.openbsd.org>2018-07-08 17:15:08 +0000
committerKenneth R Westerback <krw@cvs.openbsd.org>2018-07-08 17:15:08 +0000
commitd464459430dfe32556dda698f3f70370957dd913 (patch)
tree033b62bab4275329edca02f08ec39149953e3763 /usr.sbin/ospfd/parse.y
parentfc6ca168ed4b376c9c7f2c398d10ff6c1497be54 (diff)
Be consistent in warn() and log_warn() usage when
running out of memory. Next step, be correct *and* consistent. ok dennis@ tb@ benno@ schwarze@
Diffstat (limited to 'usr.sbin/ospfd/parse.y')
-rw-r--r--usr.sbin/ospfd/parse.y6
1 files changed, 3 insertions, 3 deletions
diff --git a/usr.sbin/ospfd/parse.y b/usr.sbin/ospfd/parse.y
index ee05e2ea71b..2f1def07ef6 100644
--- a/usr.sbin/ospfd/parse.y
+++ b/usr.sbin/ospfd/parse.y
@@ -1,4 +1,4 @@
-/* $OpenBSD: parse.y,v 1.88 2018/06/11 18:21:47 denis Exp $ */
+/* $OpenBSD: parse.y,v 1.89 2018/07/08 17:15:07 krw Exp $ */
/*
* Copyright (c) 2004, 2005 Esben Norby <norby@openbsd.org>
@@ -1127,11 +1127,11 @@ pushfile(const char *name, int secret)
struct file *nfile;
if ((nfile = calloc(1, sizeof(struct file))) == NULL) {
- log_warn("malloc");
+ log_warn("calloc");
return (NULL);
}
if ((nfile->name = strdup(name)) == NULL) {
- log_warn("malloc");
+ log_warn("strdup");
free(nfile);
return (NULL);
}