Adjust C comments that would be wrap-able.

This commit is contained in:
Bruce Momjian 2013-10-01 19:44:53 -04:00
parent 15732b34e8
commit d50f281210
1 changed files with 4 additions and 4 deletions

View File

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