]> git.pld-linux.org Git - packages/uucp.git/blob - format-security.patch
- fix format string error
[packages/uucp.git] / format-security.patch
1 --- uucp-1.07/uuconv.c~ 2003-05-29 08:08:47.000000000 +0200
2 +++ uucp-1.07/uuconv.c  2015-08-06 21:46:20.878894404 +0200
3 @@ -676,7 +676,7 @@
4      {
5        if ((*pz)[0] != '-' && pz != pzarg)
6         fprintf (e, " ");
7 -      fprintf (e, *pz);
8 +      fputs (*pz, e);
9      }
10  }
11  
This page took 0.030673 seconds and 3 git commands to generate.