Compiler is picky about pointer signedness
} syslog_fac_item;
/* constants */
} syslog_fac_item;
/* constants */
-static const char * const hidden = "<value not displayable>";
+static const uschar * const hidden = US"<value not displayable>";
if (!f.admin_user && ol->type & opt_secure)
{
if (no_labels)
if (!f.admin_user && ol->type & opt_secure)
{
if (no_labels)
- printf("%s\n", hidden);
+ printf("%s\n", CCS hidden);
- printf("%s = %s\n", name, hidden);
+ printf("%s = %s\n", name, CCS hidden);
const uschar * s = nb->hide ? hidden : nb->string;
found = TRUE;
if (no_labels)
const uschar * s = nb->hide ? hidden : nb->string;
found = TRUE;
if (no_labels)
- printf("%slist %s = %s\n", types[i], name+1, s);
+ printf("%slist %s = %s\n", types[i], name+1, CCS s);
if ((p = Ustrchr(current, '=')))
{
*p = '\0';
if ((p = Ustrchr(current, '=')))
{
*p = '\0';
- printf("%*s%s= %s\n", indent, "", current, hidden);
+ printf("%*s%s= %s\n", indent, "", current, CCS hidden);
}
/* e.g.: hide split_spool_directory */
else
}
/* e.g.: hide split_spool_directory */
else
- printf("%*s\n", indent, hidden);
+ printf("%*s\n", indent, CCS hidden);