Gentoo Websites Logo
Go to: Gentoo Home Documentation Forums Lists Bugs Planet Store Wiki Get Gentoo!
View | Details | Raw Unified | Return to bug 557140 | Differences between
and this patch

Collapse All | Expand All

(-)file_not_specified_in_diff (-8 / +6 lines)
Line  Link Here
0
-- jfsutils-1.1.15/fscklog/display.c
0
++ jfsutils-1.1.15-format-security/fscklog/display.c
Lines 182-188 void dump_service_log() Link Here
182
				} else {
182
				} else {
183
					/* the record looks ok */
183
					/* the record looks ok */
184
					msg_txt = &log_entry[log_entry_pos];
184
					msg_txt = &log_entry[log_entry_pos];
185
					printf(msg_txt);
185
					printf("%s", msg_txt);
186
					/*
186
					/*
187
					 * set up for the next record
187
					 * set up for the next record
188
					 */
188
					 */
189
-- jfsutils-1.1.15/fscklog/fscklog.c
189
++ jfsutils-1.1.15-format-security/fscklog/fscklog.c
Lines 252-259 int v_send_msg(int msg_num, const char * Link Here
252
252
253
	sprintf(debug_detail, " [%s:%d]\n", basename(file_name), line_number);
253
	sprintf(debug_detail, " [%s:%d]\n", basename(file_name), line_number);
254
254
255
	printf(msg_string);
255
	printf("%s%s", msg_string, debug_detail);
256
	printf(debug_detail);
257
256
258
	return 0;
257
	return 0;
259
}
258
}
260
-- jfsutils-1.1.15/logdump/helpers.c
259
++ jfsutils-1.1.15-format-security/logdump/helpers.c
Lines 95-102 int v_fsck_send_msg(int msg_num, const c Link Here
95
95
96
	sprintf(debug_detail, " [%s:%d]\n", file_name, line_number);
96
	sprintf(debug_detail, " [%s:%d]\n", file_name, line_number);
97
97
98
	printf(msg_string);
98
	printf("%s%s", msg_string, debug_detail);
99
	printf(debug_detail);
100
99
101
	return 0;
100
	return 0;
102
}
101
}

Return to bug 557140