By default, Bugzilla does not search the list of RESOLVED bugs.
You can force it to do so by putting the upper-case word ALL in front of your search query, e.g.: ALL tdelibs
We recommend searching for bugs this way, as you may discover that your bug has already been resolved and fixed in a later release. View | Details | Raw Unified | Return to bug 893
Collapse All | Expand All

(-)twinkle-1.4.2/src/log.cpp.ORI (-4 / +3 lines)
Lines 157-167 Link Here
157
157
158
	struct timeval t;
158
	struct timeval t;
159
	struct tm tm;
159
	struct tm tm;
160
	time_t	date;
161
162
	gettimeofday(&t, NULL);
160
	gettimeofday(&t, NULL);
163
	date = t.tv_sec;
161
164
	localtime_r(&date, &tm);
162
	const time_t date = t.tv_sec;
163
	ost::localtime_r(&date, &tm);
165
164
166
	*log_stream << "+++ ";
165
	*log_stream << "+++ ";
167
	*log_stream << tm.tm_mday;
166
	*log_stream << tm.tm_mday;

Return to bug 893