From ac6ef83f322960e83251f04fddf65322b627919c Mon Sep 17 00:00:00 2001 From: Richard Russon Date: Sat, 15 Apr 2017 17:08:07 +0100 Subject: [PATCH] fix: build of imap/auth_sasl.c Header file doesn't seem to include a header defining 'size_t'. Make sure we include before it. Closes #525 --- .clang-format | 4 +++- imap/auth_sasl.c | 1 + 2 files changed, 4 insertions(+), 1 deletion(-) diff --git a/.clang-format b/.clang-format index 9042ce512..a883ea426 100644 --- a/.clang-format +++ b/.clang-format @@ -10,8 +10,10 @@ BreakBeforeBraces: Allman IncludeCategories: - Regex: '"config.h"' Priority: -10 - - Regex: '<.*>' + - Regex: '' Priority: -5 + - Regex: '<.*>' + Priority: -4 - Regex: '"imap_private.h"' Priority: -3 - Regex: '"mutt.h"' diff --git a/imap/auth_sasl.c b/imap/auth_sasl.c index 81120c196..e18315799 100644 --- a/imap/auth_sasl.c +++ b/imap/auth_sasl.c @@ -18,6 +18,7 @@ /* SASL login/authentication code */ #include "config.h" +#include #include #include #include "imap_private.h" -- 2.49.0