Fix compilation when HAVE_DECL_SIG2STR_MAX is not defined.

This commit is contained in:
Todd C. Miller
2015-05-11 13:26:16 -06:00
parent 0c77de559e
commit 6ab5994152

View File

@@ -312,7 +312,7 @@ extern int errno;
#endif
/* For sig2str() */
#if defined(HAVE_DECL_SIG2STR_MAX) && !HAVE_DECL_SIG2STR_MAX
#if !defined(HAVE_DECL_SIG2STR_MAX) || !HAVE_DECL_SIG2STR_MAX
# define SIG2STR_MAX 32
#endif