diff options
author | Eric Faurot <eric@cvs.openbsd.org> | 2011-12-14 22:28:03 +0000 |
---|---|---|
committer | Eric Faurot <eric@cvs.openbsd.org> | 2011-12-14 22:28:03 +0000 |
commit | a8539f1d7239a1e9c2f5b4704fe266505e648546 (patch) | |
tree | f7f19a644978f82e6961d7ffe923cf6f73b11835 /usr.sbin/smtpd/smtpd.h | |
parent | 96b58b906df89d84de475989137988cd0678b4ef (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.h | 6 |
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 *); }; |