summaryrefslogtreecommitdiffstats
path: root/meta/recipes-core/libxcrypt/libxcrypt/0001-disable-format-truncation-warning-with-gcc-8.patch
blob: 654eae6c6af8c71935b51ed1f2574c69cd837c15 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
From c8c5908611e44a649489e8d217528fedc4864e14 Mon Sep 17 00:00:00 2001
From: Khem Raj <raj.khem@gmail.com>
Date: Thu, 10 May 2018 13:32:20 -0700
Subject: [PATCH] disable format-truncation warning with gcc-8

Upstream-Status: Pending

Signed-off-by: Khem Raj <raj.khem@gmail.com>
---
 crypt-sunmd5.c | 6 ++++++
 1 file changed, 6 insertions(+)

diff --git a/crypt-sunmd5.c b/crypt-sunmd5.c
index 4c85b7f..3e838cd 100644
--- a/crypt-sunmd5.c
+++ b/crypt-sunmd5.c
@@ -151,6 +151,11 @@ getrounds (const char *s)
   return ((uint32_t)val);
 }
 
+#pragma GCC diagnostic push
+#if defined(__GNUC__) && (__GNUC__ >= 8)
+#pragma GCC diagnostic ignored "-Wformat-truncation"
+#endif
+
 void
 gensalt_sunmd5_rn (unsigned long count,
                    const uint8_t *rbytes, size_t nrbytes,
@@ -189,6 +194,7 @@ gensalt_sunmd5_rn (unsigned long count,
             "$" CRYPT_ALGNAME "," ROUNDS "%u$%s$",
             (unsigned int)count, rndstr);
 }
+#pragma GCC diagnostic pop
 
 void
 crypt_sunmd5_rn (const char *phrase, const char *setting,