]> git.pld-linux.org Git - packages/freetds.git/blame - format-security.patch
- fixed firmat string error
[packages/freetds.git] / format-security.patch
CommitLineData
33c6f7cd
JR
1--- freetds-0.91/src/apps/bsqldb.c~ 2011-03-13 21:32:46.000000000 +0000
2+++ freetds-0.91/src/apps/bsqldb.c 2014-12-28 18:04:14.625622727 +0000
3@@ -545,7 +545,7 @@
4 perror("could not write to output file");
5 exit(EXIT_FAILURE);
6 }
7- fprintf(stdout, metadata[c].format_string); /* col/row separator */
8+ fputs(metadata[c].format_string, stdout); /* col/row separator */
9 continue;
10 }
11 switch (data[c].status) { /* handle nulls */
This page took 0.057104 seconds and 4 git commands to generate.