summaryrefslogtreecommitdiff
path: root/usr.sbin/smtpd/smtpd.h
diff options
context:
space:
mode:
authorEric Faurot <eric@cvs.openbsd.org>2011-12-14 22:28:03 +0000
committerEric Faurot <eric@cvs.openbsd.org>2011-12-14 22:28:03 +0000
commita8539f1d7239a1e9c2f5b4704fe266505e648546 (patch)
treef7f19a644978f82e6961d7ffe923cf6f73b11835 /usr.sbin/smtpd/smtpd.h
parent96b58b906df89d84de475989137988cd0678b4ef (diff)
split auth_backend.c for consistency
ok chl@ gilles@
Diffstat (limited to 'usr.sbin/smtpd/smtpd.h')
-rw-r--r--usr.sbin/smtpd/smtpd.h6
1 files changed, 2 insertions, 4 deletions
diff --git a/usr.sbin/smtpd/smtpd.h b/usr.sbin/smtpd/smtpd.h
index fe02ebb5a05..9aca791c89f 100644
--- a/usr.sbin/smtpd/smtpd.h
+++ b/usr.sbin/smtpd/smtpd.h
@@ -1,4 +1,4 @@
-/* $OpenBSD: smtpd.h,v 1.265 2011/12/14 18:42:27 eric Exp $ */
+/* $OpenBSD: smtpd.h,v 1.266 2011/12/14 22:28:02 eric Exp $ */
/*
* Copyright (c) 2008 Gilles Chehade <gilles@openbsd.org>
@@ -920,13 +920,11 @@ struct queue_backend {
/* auth structures */
enum auth_type {
- AUTH_INVALID=0,
AUTH_BSD,
- AUTH_GETPWNAM,
+ AUTH_PWD,
};
struct auth_backend {
- enum auth_type type;
int (*authenticate)(char *, char *);
};