From: Stephan Bosch Date: Sat, 10 Nov 2018 12:48:56 +0000 (+0100) Subject: lmtp: Rename commands.h to lmtp-commands.h. X-Git-Tag: 2.3.9~979 X-Git-Url: http://git.ipfire.org/cgi-bin/gitweb.cgi?a=commitdiff_plain;h=4f39c0902695daadaeeaa655b49db96b2fc6ca5a;p=thirdparty%2Fdovecot%2Fcore.git lmtp: Rename commands.h to lmtp-commands.h. --- diff --git a/src/lmtp/Makefile.am b/src/lmtp/Makefile.am index 5b7ead1166..7d40df6e9b 100644 --- a/src/lmtp/Makefile.am +++ b/src/lmtp/Makefile.am @@ -33,7 +33,7 @@ lmtp_DEPENDENCIES = \ lmtp_SOURCES = \ main.c \ lmtp-client.c \ - commands.c \ + lmtp-commands.c \ lmtp-recipient.c \ lmtp-local.c \ lmtp-proxy.c \ @@ -42,7 +42,7 @@ lmtp_SOURCES = \ noinst_HEADERS = \ lmtp-common.h \ lmtp-client.h \ - commands.h \ + lmtp-commands.h \ lmtp-recipient.h \ lmtp-local.h \ lmtp-proxy.h \ diff --git a/src/lmtp/lmtp-client.c b/src/lmtp/lmtp-client.c index 72ddf6a973..a98ccab313 100644 --- a/src/lmtp/lmtp-client.c +++ b/src/lmtp/lmtp-client.c @@ -20,7 +20,7 @@ #include "lda-settings.h" #include "lmtp-local.h" #include "lmtp-proxy.h" -#include "commands.h" +#include "lmtp-commands.h" #include diff --git a/src/lmtp/commands.c b/src/lmtp/lmtp-commands.c similarity index 99% rename from src/lmtp/commands.c rename to src/lmtp/lmtp-commands.c index ab50ab2caa..6e15325a09 100644 --- a/src/lmtp/commands.c +++ b/src/lmtp/lmtp-commands.c @@ -11,12 +11,12 @@ #include "lda-settings.h" #include "mail-user.h" #include "smtp-address.h" +#include "mail-deliver.h" +#include "mail-error.h" #include "lmtp-recipient.h" #include "lmtp-proxy.h" #include "lmtp-local.h" -#include "mail-deliver.h" -#include "mail-error.h" -#include "commands.h" +#include "lmtp-commands.h" /* * MAIL command diff --git a/src/lmtp/commands.h b/src/lmtp/lmtp-commands.h similarity index 100% rename from src/lmtp/commands.h rename to src/lmtp/lmtp-commands.h