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
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
|
parse_options_getopt.c | 8 ++++----
parse_options_popt.c | 8 ++++----
2 files changed, 8 insertions(+), 8 deletions(-)
diff --git a/parse_options_getopt.c b/parse_options_getopt.c
index 1f80966..ea2b266 100644
--- a/parse_options_getopt.c
+++ b/parse_options_getopt.c
@@ -98,9 +98,9 @@ struct detox_options *parse_options_getopt(int argc, char **argv)
#endif
switch (optcode) {
case 'h':
- printf(usage_message);
+ printf("%s", usage_message);
printf("\n");
- printf(help_message);
+ printf("%s", help_message);
exit(EXIT_SUCCESS);
case 'f':
@@ -138,7 +138,7 @@ struct detox_options *parse_options_getopt(int argc, char **argv)
exit(EXIT_SUCCESS);
case '?':
- printf(usage_message);
+ printf("%s", usage_message);
exit(EXIT_SUCCESS);
case 0:
@@ -195,7 +195,7 @@ struct detox_options *parse_options_getopt(int argc, char **argv)
}
else {
#ifndef INLINE_MODE
- printf(usage_message);
+ printf("%s", usage_message);
exit(EXIT_FAILURE);
#endif
}
diff --git a/parse_options_popt.c b/parse_options_popt.c
index 60dad7a..370c3cc 100644
--- a/parse_options_popt.c
+++ b/parse_options_popt.c
@@ -94,9 +94,9 @@ struct detox_options *parse_options_popt(int argc, const char **argv)
while ((c = poptGetNextOpt(optCon)) >= 0) {
switch (c) {
case 'h':
- printf(usage_message);
+ printf("%s", usage_message);
printf("\n");
- printf(help_message);
+ printf("%s", help_message);
exit(EXIT_SUCCESS);
case 'f':
@@ -142,7 +142,7 @@ struct detox_options *parse_options_popt(int argc, const char **argv)
break;
case '?':
- printf(usage_message);
+ printf("%s", usage_message);
exit(EXIT_SUCCESS);
}
@@ -177,7 +177,7 @@ struct detox_options *parse_options_popt(int argc, const char **argv)
#ifndef INLINE_MODE
if (i == 0) {
- fprintf(stderr, usage_message);
+ fprintf(stderr, "%s", usage_message);
exit(EXIT_FAILURE);
}
#endif
|