@@ -822,11 +822,11 @@ DecodeDateTime(char **field, int *ftype, int nf,
822822switch (ftype [i ])
823823{
824824case DTK_DATE :
825- /***
825+ /*
826826 * Integral julian day with attached time zone?
827827 * All other forms with JD will be separated into
828828 * distinct fields, so we handle just this case here.
829- *** /
829+ */
830830if (ptype == DTK_JULIAN )
831831{
832832char * cp ;
@@ -852,7 +852,7 @@ DecodeDateTime(char **field, int *ftype, int nf,
852852ptype = 0 ;
853853break ;
854854}
855- /***
855+ /*
856856 * Already have a date? Then this might be a time zone name
857857 * with embedded punctuation (e.g. "America/New_York") or a
858858 * run-together time with trailing time zone (e.g. hhmmss-zz).
@@ -861,7 +861,7 @@ DecodeDateTime(char **field, int *ftype, int nf,
861861 * We consider it a time zone if we already have month & day.
862862 * This is to allow the form "mmm dd hhmmss tz year", which
863863 * we've historically accepted.
864- *** /
864+ */
865865else if (ptype != 0 ||
866866 ((fmask & (DTK_M (MONTH ) |DTK_M (DAY )))==
867867 (DTK_M (MONTH ) |DTK_M (DAY ))))