When a flag option is used in a format, it should use the number form

not string.
This commit is contained in:
nicm
2017-01-30 21:41:17 +00:00
parent b6099f31ea
commit 3408595f77
4 changed files with 8 additions and 5 deletions

View File

@ -325,7 +325,7 @@ options_isstring(struct options_entry *o)
}
const char *
options_tostring(struct options_entry *o, int idx)
options_tostring(struct options_entry *o, int idx, int numeric)
{
static char s[1024];
const char *tmp;
@ -355,7 +355,10 @@ options_tostring(struct options_entry *o, int idx)
tmp = attributes_tostring(o->number);
break;
case OPTIONS_TABLE_FLAG:
tmp = (o->number ? "on" : "off");
if (numeric)
xsnprintf(s, sizeof s, "%lld", o->number);
else
tmp = (o->number ? "on" : "off");
break;
case OPTIONS_TABLE_CHOICE:
tmp = o->tableentry->choices[o->number];