]> git.pld-linux.org Git - packages/sftp.git/blob - format-security.patch
- fix format string error
[packages/sftp.git] / format-security.patch
1 --- sftp-0.9.9/sftp.c~  2001-03-06 22:42:17.000000000 +0100
2 +++ sftp-0.9.9/sftp.c   2016-10-20 09:17:59.296238176 +0200
3 @@ -211,7 +211,7 @@
4         if (nargs == 1) {
5                 printf("Supported commands are:\n");
6                 for (i = 0; action[i].str != NULL; i++) {
7 -                       printf(action[i].str);
8 +                       puts(action[i].str);
9                         if (i % 8 == 7)
10                                 putchar('\n');
11                         else
This page took 0.067323 seconds and 3 git commands to generate.