Parent Directory | Revision Log | Revision Graph
Initial import
1 | unnilennium | 1.1 | Description: Fix FTBFS with -Werror=format-security |
2 | |||
3 | --- a/python/neo_cgi.c | ||
4 | +++ b/python/neo_cgi.c | ||
5 | @@ -178,7 +178,7 @@ | ||
6 | if (!PyArg_ParseTuple(args, "s:error(str)", &s)) | ||
7 | return NULL; | ||
8 | |||
9 | - cgi_error (cgi, s); | ||
10 | + cgi_error (cgi, "%s", s); | ||
11 | rv = Py_None; | ||
12 | Py_INCREF(rv); | ||
13 | return rv; |
admin@koozali.org | ViewVC Help |
Powered by ViewVC 1.2.1 |