summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
-rw-r--r--src/src/exim.c4
-rw-r--r--src/src/smtp_in.c8
2 files changed, 6 insertions, 6 deletions
diff --git a/src/src/exim.c b/src/src/exim.c
index e1736d6e9..3aa006d96 100644
--- a/src/src/exim.c
+++ b/src/src/exim.c
@@ -762,7 +762,7 @@ exit(EXIT_FAILURE);
}
/* fail if a length is too long */
-static void
+static inline void
exim_len_fail_toolong(int itemlen, int maxlen, const char *description)
{
if (itemlen <= maxlen)
@@ -773,7 +773,7 @@ exit(EXIT_FAILURE);
}
/* only pass through the string item back to the caller if it's short enough */
-static const uschar *
+static inline const uschar *
exim_str_fail_toolong(const uschar *item, int maxlen, const char *description)
{
exim_len_fail_toolong(Ustrlen(item), maxlen, description);
diff --git a/src/src/smtp_in.c b/src/src/smtp_in.c
index 04d6aa4ba..b48870d26 100644
--- a/src/src/smtp_in.c
+++ b/src/src/smtp_in.c
@@ -594,8 +594,8 @@ if (n > 0)
/* Forward declarations */
-static void bdat_push_receive_functions(void);
-static void bdat_pop_receive_functions(void);
+static inline void bdat_push_receive_functions(void);
+static inline void bdat_pop_receive_functions(void);
/* Get a byte from the smtp input, in CHUNKING mode. Handle ack of the
@@ -776,7 +776,7 @@ if (chunking_state != CHUNKING_LAST)
}
-static void
+static inline void
bdat_push_receive_functions(void)
{
/* push the current receive_* function on the "stack", and
@@ -797,7 +797,7 @@ receive_getc = bdat_getc;
receive_ungetc = bdat_ungetc;
}
-static void
+static inline void
bdat_pop_receive_functions(void)
{
receive_getc = lwr_receive_getc;