diff options
author | Omar Polo <op@cvs.openbsd.org> | 2024-05-28 07:10:31 +0000 |
---|---|---|
committer | Omar Polo <op@cvs.openbsd.org> | 2024-05-28 07:10:31 +0000 |
commit | 54984cc74d6596d517d0520e4031b87c5b1f371f (patch) | |
tree | 8d51748e64a88f211dc56f85a1e4079bf49aaf60 /usr.sbin/smtpd/smtpd.h | |
parent | 4abbf8dca72cf071fb784f484a69b8e62577f43c (diff) |
actually honour the services supported by the proc tables
ok gilles@
Diffstat (limited to 'usr.sbin/smtpd/smtpd.h')
-rw-r--r-- | usr.sbin/smtpd/smtpd.h | 3 |
1 files changed, 2 insertions, 1 deletions
diff --git a/usr.sbin/smtpd/smtpd.h b/usr.sbin/smtpd/smtpd.h index 0ab99d7f4f4..e7ff0e3cafb 100644 --- a/usr.sbin/smtpd/smtpd.h +++ b/usr.sbin/smtpd/smtpd.h @@ -1,4 +1,4 @@ -/* $OpenBSD: smtpd.h,v 1.684 2024/05/07 12:10:06 op Exp $ */ +/* $OpenBSD: smtpd.h,v 1.685 2024/05/28 07:10:30 op Exp $ */ /* * Copyright (c) 2008 Gilles Chehade <gilles@poolp.org> @@ -356,6 +356,7 @@ struct table { enum table_type t_type; char t_config[PATH_MAX]; + unsigned int t_services; void *t_handle; struct table_backend *t_backend; }; |