aboutsummaryrefslogtreecommitdiff
path: root/databases/py-rrdtool_lgpl/files/patch-src::_rrdtoolmodule.c
diff options
context:
space:
mode:
Diffstat (limited to 'databases/py-rrdtool_lgpl/files/patch-src::_rrdtoolmodule.c')
-rw-r--r--databases/py-rrdtool_lgpl/files/patch-src::_rrdtoolmodule.c17
1 files changed, 17 insertions, 0 deletions
diff --git a/databases/py-rrdtool_lgpl/files/patch-src::_rrdtoolmodule.c b/databases/py-rrdtool_lgpl/files/patch-src::_rrdtoolmodule.c
new file mode 100644
index 000000000000..358957220aaf
--- /dev/null
+++ b/databases/py-rrdtool_lgpl/files/patch-src::_rrdtoolmodule.c
@@ -0,0 +1,17 @@
+--- src/_rrdtoolmodule.c.orig Tue May 10 15:02:49 2005
++++ src/_rrdtoolmodule.c Tue May 10 15:06:59 2005
+@@ -232,11 +232,13 @@
+ PyObject *r;
+ char **argv, **calcpr;
+ int argc, xsize, ysize, i;
++ double ymin, ymax;
+
+ if (create_args("graph", args, &argc, &argv) < 0)
+ return NULL;
+
+- if (rrd_graph(argc, argv, &calcpr, &xsize, &ysize) == -1) {
++ if (rrd_graph(argc, argv, &calcpr, &xsize, &ysize, NULL,
++ &ymin, &ymax) == -1) {
+ PyErr_SetString(ErrorObject, rrd_get_error());
+ rrd_clear_error();
+ r = NULL;