cli: use "--" instead of "no set" for NULL strings

This commit is contained in:
Jiří Klimeš
2012-06-04 12:25:43 +02:00
parent 4692c00be2
commit 716a09d7ac
2 changed files with 4 additions and 4 deletions

View File

@@ -276,7 +276,7 @@ print_fields (const NmcPrintFields fields, const NmcOutputField field_values[])
int table_width = 0;
char *line = NULL;
char *indent_str;
const char *not_set_str = _("not set");
const char *not_set_str = "--";
int i;
gboolean multiline = fields.flags & NMC_PF_FLAG_MULTILINE;
gboolean terse = fields.flags & NMC_PF_FLAG_TERSE;