From: Sterling Hughes Date: Thu, 18 Oct 2001 09:10:05 +0000 (+0000) Subject: fix formatting, this line really was too long ;) X-Git-Tag: POST_PARAMETER_PARSING_API~85 X-Git-Url: https://granicus.if.org/sourcecode?a=commitdiff_plain;h=009b5575fa71f300eac06f6b1317a6e32a22b490;p=php fix formatting, this line really was too long ;) --- diff --git a/ext/session/session.c b/ext/session/session.c index 0ab447f5d5..f5de226d42 100644 --- a/ext/session/session.c +++ b/ext/session/session.c @@ -617,7 +617,11 @@ static void strcpy_gmt(char *ubuf, time_t *when) php_gmtime_r(when, &tm); /* we know all components, thus it is safe to use sprintf */ - n = sprintf(buf, "%s, %d %s %d %02d:%02d:%02d GMT", week_days[tm.tm_wday], tm.tm_mday, month_names[tm.tm_mon], tm.tm_year + 1900, tm.tm_hour, tm.tm_min, tm.tm_sec); + n = sprintf(buf, "%s, %d %s %d %02d:%02d:%02d GMT", + week_days[tm.tm_wday], tm.tm_mday, + month_names[tm.tm_mon], tm.tm_year + 1900, + tm.tm_hour, tm.tm_min, + tm.tm_sec); memcpy(ubuf, buf, n); ubuf[n] = '\0'; }