From 07a0e0310760cfe65a7347dc303958f34774f11d Mon Sep 17 00:00:00 2001 From: Art Cancro Date: Mon, 25 Oct 2021 13:21:47 -0400 Subject: [PATCH] Suppress format-truncation warnings because they are WRONG --- textclient/configure | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/textclient/configure b/textclient/configure index f49e7527f..f43c18f3d 100755 --- a/textclient/configure +++ b/textclient/configure @@ -64,7 +64,7 @@ done [ "$PREFIX" = "" ] && PREFIX=/usr/local [ "$BINDIR" = "" ] && BINDIR=${PREFIX}/bin [ "$CTDLDIR" = "" ] && CTDLDIR=/usr/local/citadel -[ "$CFLAGS" = "" ] && CFLAGS='-ggdb' +[ "$CFLAGS" = "" ] && CFLAGS='-Wformat-truncation=0 -ggdb' [ "$LDFLAGS" = "" ] && LDFLAGS='' # Test for OpenSSL -- 2.39.2