]> git.pld-linux.org Git - packages/freetds.git/blob - format-security.patch
- fixed firmat string error
[packages/freetds.git] / format-security.patch
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.098084 seconds and 3 git commands to generate.