We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent 20f5159 commit 560aa64Copy full SHA for 560aa64
cf-agent/verify_packages.c
@@ -2741,9 +2741,9 @@ const size_t name_len = strlen(pi->name);
2741
}
2742
else
2743
{
2744
- strcat(offset, "\"");
+ strcat(offset, "'");
2745
strcat(offset+1, pi->name);
2746
-strcat(offset+1+name_len, "\"");
+strcat(offset+1+name_len, "'");
2747
2748
2749
PromiseResult result = PROMISE_RESULT_NOOP;
@@ -2802,9 +2802,9 @@ const size_t name_len = strlen(pi->name);
2802
2803
2804
2805
-strcpy(offset, "\"");
+strcpy(offset, "'");
2806
strcpy(offset+1, pi->name);
2807
-strcpy(offset+1+name_len, "\"");
+strcpy(offset+1+name_len, "'");
2808
2809
2810
strcat(command_string, " ");
0 commit comments