aboutsummaryrefslogtreecommitdiffstats
path: root/smtpd/smtpd.h
diff options
context:
space:
mode:
authorGilles Chehade <gilles@poolp.org>2017-08-06 23:28:42 +0200
committerGilles Chehade <gilles@poolp.org>2017-08-06 23:28:42 +0200
commit8de0e39ffea6659b81b9ce30876d77ff4510ae66 (patch)
tree16be7b1b6d5137c8149d971637a05dfaebef1474 /smtpd/smtpd.h
parentsync with openbsd (diff)
downloadOpenSMTPD-8de0e39ffea6659b81b9ce30876d77ff4510ae66.tar.xz
OpenSMTPD-8de0e39ffea6659b81b9ce30876d77ff4510ae66.zip
fix flags masking for PURGE and remove envelope upgrade codeopensmtpd-201801101413
Diffstat (limited to 'smtpd/smtpd.h')
-rw-r--r--smtpd/smtpd.h4
1 files changed, 2 insertions, 2 deletions
diff --git a/smtpd/smtpd.h b/smtpd/smtpd.h
index 4474f447..39f9e136 100644
--- a/smtpd/smtpd.h
+++ b/smtpd/smtpd.h
@@ -1,4 +1,4 @@
-/* $OpenBSD: smtpd.h,v 1.533 2017/07/27 18:48:30 sunil Exp $ */
+/* $OpenBSD: smtpd.h,v 1.534 2017/08/04 14:38:49 gilles Exp $ */
/*
* Copyright (c) 2008 Gilles Chehade <gilles@poolp.org>
@@ -1150,7 +1150,7 @@ int uncompress_file(FILE *, FILE *);
#define PURGE_RULES 0x04
#define PURGE_PKI 0x08
#define PURGE_PKI_KEYS 0x10
-#define PURGE_EVERYTHING 0x0f
+#define PURGE_EVERYTHING 0xff
void purge_config(uint8_t);
void config_process(enum smtp_proc_type);
void config_peer(enum smtp_proc_type);