diff options
author | Eric Faurot <eric@cvs.openbsd.org> | 2011-12-13 23:00:53 +0000 |
---|---|---|
committer | Eric Faurot <eric@cvs.openbsd.org> | 2011-12-13 23:00:53 +0000 |
commit | 63faf81cab4f131e5082662147f4028d9929d90f (patch) | |
tree | b59711a7a4488f794b948dbff36aebc17ba907c2 /usr.sbin | |
parent | 2397649d9fe0597b1b867c2f45f85f6e130a14de (diff) |
rename files for consistency.
ok gilles@
Diffstat (limited to 'usr.sbin')
-rw-r--r-- | usr.sbin/smtpd/makemap/Makefile | 4 | ||||
-rw-r--r-- | usr.sbin/smtpd/map_db.c (renamed from usr.sbin/smtpd/map_backend_db.c) | 2 | ||||
-rw-r--r-- | usr.sbin/smtpd/map_stdio.c (renamed from usr.sbin/smtpd/map_backend_stdio.c) | 2 | ||||
-rw-r--r-- | usr.sbin/smtpd/smtpd/Makefile | 5 |
4 files changed, 6 insertions, 7 deletions
diff --git a/usr.sbin/smtpd/makemap/Makefile b/usr.sbin/smtpd/makemap/Makefile index 0895e7708f8..4373a605918 100644 --- a/usr.sbin/smtpd/makemap/Makefile +++ b/usr.sbin/smtpd/makemap/Makefile @@ -1,4 +1,4 @@ -# $OpenBSD: Makefile,v 1.11 2011/12/13 22:09:53 eric Exp $ +# $OpenBSD: Makefile,v 1.12 2011/12/13 23:00:52 eric Exp $ .PATH: ${.CURDIR}/.. @@ -17,7 +17,7 @@ CFLAGS+= -Wshadow -Wpointer-arith -Wcast-qual CFLAGS+= -Wsign-compare -Wbounded SRCS= parse.y makemap.c aliases.c expand.c log.c util.c map.c \ - map_backend_db.c map_backend_stdio.c + map_db.c map_stdio.c DPADD+= ${LIBUTIL} LDADD+= -lutil diff --git a/usr.sbin/smtpd/map_backend_db.c b/usr.sbin/smtpd/map_db.c index a74a69c19f9..17e8a1ae32d 100644 --- a/usr.sbin/smtpd/map_backend_db.c +++ b/usr.sbin/smtpd/map_db.c @@ -1,4 +1,4 @@ -/* $OpenBSD: map_backend_db.c,v 1.1 2011/05/21 18:43:08 gilles Exp $ */ +/* $OpenBSD: map_db.c,v 1.1 2011/12/13 23:00:52 eric Exp $ */ /* * Copyright (c) 2011 Gilles Chehade <gilles@openbsd.org> diff --git a/usr.sbin/smtpd/map_backend_stdio.c b/usr.sbin/smtpd/map_stdio.c index d60538547dc..9b9b0198a33 100644 --- a/usr.sbin/smtpd/map_backend_stdio.c +++ b/usr.sbin/smtpd/map_stdio.c @@ -1,4 +1,4 @@ -/* $OpenBSD: map_backend_stdio.c,v 1.2 2011/08/30 11:19:51 chl Exp $ */ +/* $OpenBSD: map_stdio.c,v 1.1 2011/12/13 23:00:52 eric Exp $ */ /* * Copyright (c) 2011 Gilles Chehade <gilles@openbsd.org> diff --git a/usr.sbin/smtpd/smtpd/Makefile b/usr.sbin/smtpd/smtpd/Makefile index ed1d4cef3ff..e2a7ba9df3b 100644 --- a/usr.sbin/smtpd/smtpd/Makefile +++ b/usr.sbin/smtpd/smtpd/Makefile @@ -1,12 +1,11 @@ -# $OpenBSD: Makefile,v 1.34 2011/12/13 22:09:53 eric Exp $ +# $OpenBSD: Makefile,v 1.35 2011/12/13 23:00:52 eric Exp $ PROG= smtpd SRCS= aliases.c auth_backend.c bounce.c client.c \ delivery.c delivery_filename.c \ delivery_maildir.c delivery_mbox.c delivery_mda.c \ config.c control.c dns.c expand.c forward.c \ - lka.c lka_session.c log.c map.c \ - map_backend_db.c map_backend_stdio.c \ + lka.c lka_session.c log.c map.c map_db.c map_stdio.c \ mda.c mfa.c mfa_session.c mta.c parse.y \ queue.c queue_shared.c ruleset.c runner.c smtp.c \ smtp_session.c smtpd.c ssl.c ssl_privsep.c util.c asr.c \ |