@@ -822,11 +822,11 @@ DecodeDateTime(char **field, int *ftype, int nf,
822
822
switch (ftype [i ])
823
823
{
824
824
case DTK_DATE :
825
- /***
825
+ /*
826
826
* Integral julian day with attached time zone?
827
827
* All other forms with JD will be separated into
828
828
* distinct fields, so we handle just this case here.
829
- *** /
829
+ */
830
830
if (ptype == DTK_JULIAN )
831
831
{
832
832
char * cp ;
@@ -852,7 +852,7 @@ DecodeDateTime(char **field, int *ftype, int nf,
852
852
ptype = 0 ;
853
853
break ;
854
854
}
855
- /***
855
+ /*
856
856
* Already have a date? Then this might be a time zone name
857
857
* with embedded punctuation (e.g. "America/New_York") or a
858
858
* run-together time with trailing time zone (e.g. hhmmss-zz).
@@ -861,7 +861,7 @@ DecodeDateTime(char **field, int *ftype, int nf,
861
861
* We consider it a time zone if we already have month & day.
862
862
* This is to allow the form "mmm dd hhmmss tz year", which
863
863
* we've historically accepted.
864
- *** /
864
+ */
865
865
else if (ptype != 0 ||
866
866
((fmask & (DTK_M (MONTH ) |DTK_M (DAY )))==
867
867
(DTK_M (MONTH ) |DTK_M (DAY ))))