artulab
projects
/
openbsd
/ commitdiff
commit
grep
author
committer
pickaxe
?
search:
re
summary
|
shortlog
|
log
|
commit
| commitdiff |
tree
raw
|
patch
| inline |
side by side
(parent:
1823623
)
fix logging of list entries
author
eric
<eric@openbsd.org>
Fri, 28 Dec 2018 11:11:36 +0000
(11:11 +0000)
committer
eric
<eric@openbsd.org>
Fri, 28 Dec 2018 11:11:36 +0000
(11:11 +0000)
usr.sbin/smtpd/table_static.c
patch
|
blob
|
history
diff --git
a/usr.sbin/smtpd/table_static.c
b/usr.sbin/smtpd/table_static.c
index
d7e9698
..
73c1816
100644
(file)
--- a/
usr.sbin/smtpd/table_static.c
+++ b/
usr.sbin/smtpd/table_static.c
@@
-1,4
+1,4
@@
-/* $OpenBSD: table_static.c,v 1.3
0 2018/12/28 10:42:18
eric Exp $ */
+/* $OpenBSD: table_static.c,v 1.3
1 2018/12/28 11:11:36
eric Exp $ */
/*
* Copyright (c) 2013 Eric Faurot <eric@openbsd.org>
@@
-282,7
+282,7
@@
table_static_dump(struct table *table)
iter = NULL;
while (dict_iter(&priv->dict, &iter, &key, (void**)&value)) {
- if (value)
+ if (value
&& (void*)value != (void*)priv
)
log_debug(" \"%s\" -> \"%s\"", key, value);
else
log_debug(" \"%s\"", key);