Package: jfsutils / 1.1.15-3

format-security-errors.patch Patch series | download
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
--- a/fscklog/display.c
+++ b/fscklog/display.c
@@ -182,7 +182,7 @@ void dump_service_log()
 				} else {
 					/* the record looks ok */
 					msg_txt = &log_entry[log_entry_pos];
-					printf(msg_txt);
+					printf("%s", msg_txt);
 					/*
 					 * set up for the next record
 					 */
--- a/fscklog/fscklog.c
+++ b/fscklog/fscklog.c
@@ -252,8 +252,8 @@ int v_send_msg(int msg_num, const char *file_name, int line_number, ...) {
 
 	sprintf(debug_detail, " [%s:%d]\n", basename(file_name), line_number);
 
-	printf(msg_string);
-	printf(debug_detail);
+	printf("%s", msg_string);
+	printf("%s", debug_detail);
 
 	return 0;
 }
--- a/logdump/helpers.c
+++ b/logdump/helpers.c
@@ -95,8 +95,8 @@ int v_fsck_send_msg(int msg_num, const char *file_name, int line_number, ...) {
 
 	sprintf(debug_detail, " [%s:%d]\n", file_name, line_number);
 
-	printf(msg_string);
-	printf(debug_detail);
+	printf("%s", msg_string);
+	printf("%s", debug_detail);
 
 	return 0;
 }