diff options
author | Simon Frankenberger <simon@fraho.eu> | 2020-04-02 16:43:04 +0200 |
---|---|---|
committer | Leo <thinkabit.ukim@gmail.com> | 2020-04-04 17:35:47 +0000 |
commit | f068c3eaa72ba6960c6cd3b7b01d2aa197b91bb4 (patch) | |
tree | 09cbd7763c13896c2cb0d68259946c75346c5b08 /main/cvs/cvs-1.12.12-format-security.patch | |
parent | eeea38c8e334545967285a375bfd9a1fe3d0ab2b (diff) | |
download | aports-f068c3eaa72ba6960c6cd3b7b01d2aa197b91bb4.tar.bz2 aports-f068c3eaa72ba6960c6cd3b7b01d2aa197b91bb4.tar.xz |
main/cvs: upgrade to 1.12.13
Diffstat (limited to 'main/cvs/cvs-1.12.12-format-security.patch')
-rw-r--r-- | main/cvs/cvs-1.12.12-format-security.patch | 22 |
1 files changed, 0 insertions, 22 deletions
diff --git a/main/cvs/cvs-1.12.12-format-security.patch b/main/cvs/cvs-1.12.12-format-security.patch deleted file mode 100644 index d710a90207..0000000000 --- a/main/cvs/cvs-1.12.12-format-security.patch +++ /dev/null @@ -1,22 +0,0 @@ ---- a/diff/diff3.c -+++ b/diff/diff3.c -@@ -1503,7 +1503,7 @@ - line = 0; - do - { -- printf_output (line_prefix); -+ printf_output ("%s", line_prefix); - cp = D_RELNUM (ptr, realfile, line); - length = D_RELLEN (ptr, realfile, line); - write_output (cp, length); ---- a/src/main.c -+++ b/src/main.c -@@ -1375,7 +1375,7 @@ - { - (void) fprintf (stderr, *cpp++, program_name, cvs_cmd_name); - for (; *cpp; cpp++) -- (void) fprintf (stderr, *cpp); -+ (void) fprintf (stderr, "%s", *cpp); - exit (EXIT_FAILURE); - } - |