From: Ken Hornstein Date: Fri, 22 Feb 2013 05:52:50 +0000 (-0500) Subject: Add support for LS_UNQUOTE instruction. X-Git-Url: https://diplodocus.org/git/nmh/commitdiff_plain/b524f0f5810f9b34f1d56195d603886ce9075dff?ds=inline;hp=--cc Add support for LS_UNQUOTE instruction. --- b524f0f5810f9b34f1d56195d603886ce9075dff diff --git a/man/fmttest.man b/man/fmttest.man index 17d7d300..011d90db 100644 --- a/man/fmttest.man +++ b/man/fmttest.man @@ -338,6 +338,7 @@ LS_GNAME Write group name of addr component to \fIstr\fR LS_NOTE Write note portion of addr component to \fIstr\fR LS_822ADDR Write \*(lqproper\*(rq RFC-822 version of addr component to \fIstr\fR LS_FRIENDLY Write friendly (name or note) of address component to \fIstr\fR +LS_UNQUOTE Remove RFC-2822 quotes from string LV_HOSTTYPE Set \fInum\fR to type of host (0=local, 1=network) LV_INGRPF Set \fInum\fR to 1 if address was inside of group LV_NOHOSTF Set \fInum\fR to 1 of no host was present in address component diff --git a/uip/fmttest.c b/uip/fmttest.c index f601ad78..dafdbdb8 100644 --- a/uip/fmttest.c +++ b/uip/fmttest.c @@ -1040,6 +1040,7 @@ f_typestr(int t) case FT_LS_FRIENDLY: return("LS_FRIENDLY"); case FT_LV_HOSTTYPE: return("LV_HOSTTYPE"); case FT_LV_INGRPF: return("LV_INGRPF"); + case FT_LS_UNQUOTE: return("LS_UNQUOTE"); case FT_LV_NOHOSTF: return("LV_NOHOSTF"); case FT_LOCALDATE: return("LOCALDATE"); case FT_GMTDATE: return("GMTDATE");