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 2110
Collapse All | Expand All

(-)kcontrol/info/info_openbsd.cpp.orig (-1 / +1 lines)
Lines 235-241 Link Here
235
		if ((pos = s.find("at ")) >= 0) {
235
		if ((pos = s.find("at ")) >= 0) {
236
			pos += 3;	// skip "at "
236
			pos += 3;	// skip "at "
237
			start = end = s.ascii();
237
			start = end = s.ascii();
238
			for(; (*end!=':') && (*end!='\n'); end++);
238
			for(; *end && (*end!=':') && (*end!='\n'); end++);
239
			len = end - start;
239
			len = end - start;
240
			dev = (char *) malloc(len + 1);
240
			dev = (char *) malloc(len + 1);
241
			strncpy(dev, start, len);
241
			strncpy(dev, start, len);

Return to bug 2110