[Openvas-commits] r6165 - in trunk/gsa: . src
scm-commit@wald.intevation.org
scm-commit at wald.intevation.org
Thu Dec 17 09:25:31 CET 2009
Author: jan
Date: 2009-12-17 09:25:31 +0100 (Thu, 17 Dec 2009)
New Revision: 6165
Modified:
trunk/gsa/ChangeLog
trunk/gsa/src/gsad.c
Log:
* src/gsad.c (exec_omp_get): Maximum result count back down
to 1000 as we have pagination acticated.
Modified: trunk/gsa/ChangeLog
===================================================================
--- trunk/gsa/ChangeLog 2009-12-17 08:10:14 UTC (rev 6164)
+++ trunk/gsa/ChangeLog 2009-12-17 08:25:31 UTC (rev 6165)
@@ -1,3 +1,8 @@
+2009-12-17 Jan-Oliver Wagner <jan-oliver.wagner at greenbone.net>
+
+ * src/gsad.c (exec_omp_get): Maximum result count back down
+ to 1000 as we have pagination acticated.
+
2009-12-17 Felix Wolfsteller <felix.wolfsteller at intevation.de>
* CMakeLists.txt: Use pkg-config module to check for correct
Modified: trunk/gsa/src/gsad.c
===================================================================
--- trunk/gsa/src/gsad.c 2009-12-17 08:10:14 UTC (rev 6164)
+++ trunk/gsa/src/gsad.c 2009-12-17 08:25:31 UTC (rev 6165)
@@ -1527,7 +1527,7 @@
if (!first_result || sscanf (first_result, "%u", &first) != 1)
first = 1;
if (!max_results || sscanf (max_results, "%u", &max) != 1)
- max = 10000;
+ max = 1000;
if (format != NULL)
{
More information about the Openvas-commits
mailing list