diff options
author | Jacek Masiulaniec <jacekm@cvs.openbsd.org> | 2009-02-18 12:06:02 +0000 |
---|---|---|
committer | Jacek Masiulaniec <jacekm@cvs.openbsd.org> | 2009-02-18 12:06:02 +0000 |
commit | 2c4f45e61b4a1b2609f7559478432fa62fc5e433 (patch) | |
tree | 7761bdee7217970f995155bbc8047b503ee4b691 | |
parent | 446b4d18fc6fe148bc0900b28f664d355be8063f (diff) |
fix compiler warning; ok gilles@
-rw-r--r-- | usr.sbin/smtpd/lka.c | 3 |
1 files changed, 2 insertions, 1 deletions
diff --git a/usr.sbin/smtpd/lka.c b/usr.sbin/smtpd/lka.c index bed6ce2755a..d5af2d7fcd9 100644 --- a/usr.sbin/smtpd/lka.c +++ b/usr.sbin/smtpd/lka.c @@ -1,4 +1,4 @@ -/* $OpenBSD: lka.c,v 1.23 2009/02/17 22:15:01 jacekm Exp $ */ +/* $OpenBSD: lka.c,v 1.24 2009/02/18 12:06:01 jacekm Exp $ */ /* * Copyright (c) 2008 Pierre-Yves Ritschard <pyr@openbsd.org> @@ -808,6 +808,7 @@ lka_resolve_alias(struct path *path, struct alias *alias) log_debug("ADDRESS: %s@%s", alias->u.path.user, alias->u.path.domain); *path = alias->u.path; break; + case ALIAS_TEXT: case ALIAS_INCLUDE: fatalx("lka_resolve_alias: unexpected type"); break; |