summaryrefslogtreecommitdiff
path: root/usr.sbin/smtpd/table.c
diff options
context:
space:
mode:
authorEric Faurot <eric@cvs.openbsd.org>2018-12-27 08:57:04 +0000
committerEric Faurot <eric@cvs.openbsd.org>2018-12-27 08:57:04 +0000
commit2a3dafece0eefdd1c15b2c182308cd37b4edfc34 (patch)
tree37a5a9229af61c678a9b9f171a9b81e7d97fe33a /usr.sbin/smtpd/table.c
parente9a806e7ea9c8a1c70d0d1de4607ab36742db583 (diff)
change the close() method to take the table pointer
ok gilles
Diffstat (limited to 'usr.sbin/smtpd/table.c')
-rw-r--r--usr.sbin/smtpd/table.c4
1 files changed, 2 insertions, 2 deletions
diff --git a/usr.sbin/smtpd/table.c b/usr.sbin/smtpd/table.c
index 0c23f1b14b4..e6190afa3b9 100644
--- a/usr.sbin/smtpd/table.c
+++ b/usr.sbin/smtpd/table.c
@@ -1,4 +1,4 @@
-/* $OpenBSD: table.c,v 1.39 2018/12/27 08:08:06 eric Exp $ */
+/* $OpenBSD: table.c,v 1.40 2018/12/27 08:57:03 eric Exp $ */
/*
* Copyright (c) 2013 Eric Faurot <eric@openbsd.org>
@@ -349,7 +349,7 @@ void
table_close(struct table *t)
{
if (t->t_backend->close)
- t->t_backend->close(t->t_handle);
+ t->t_backend->close(t);
}
int