Code

prepare for the release of rrdtool-1.4.6
authoroetiker <oetiker@a5681a0c-68f1-0310-ab6d-d61299d08faa>
Mon, 16 Jan 2012 13:44:41 +0000 (13:44 +0000)
committeroetiker <oetiker@a5681a0c-68f1-0310-ab6d-d61299d08faa>
Mon, 16 Jan 2012 13:44:41 +0000 (13:44 +0000)
git-svn-id: svn://svn.oetiker.ch/rrdtool/branches/1.4/program@2252 a5681a0c-68f1-0310-ab6d-d61299d08faa

44 files changed:
CHANGES
bindings/perl-piped/RRDp.pm
bindings/perl-shared/RRDs.pm
doc/rrdbuild.pod
doc/rrdxport.pod
rrdtool.spec
src/pngsize.c
src/rrd.h
src/rrd_cgi.c
src/rrd_create.c
src/rrd_datalang.c
src/rrd_diff.c
src/rrd_dump.c
src/rrd_error.c
src/rrd_fetch.c
src/rrd_first.c
src/rrd_format.c
src/rrd_format.h
src/rrd_gfx.c
src/rrd_graph.c
src/rrd_graph_helper.c
src/rrd_hw.c
src/rrd_hw.h
src/rrd_i18n.h
src/rrd_info.c
src/rrd_is_thread_safe.h
src/rrd_last.c
src/rrd_lastupdate.c
src/rrd_not_thread_safe.c
src/rrd_open.c
src/rrd_resize.c
src/rrd_restore.c
src/rrd_rpncalc.c
src/rrd_rpncalc.h
src/rrd_thread_safe.c
src/rrd_thread_safe_nt.c
src/rrd_tool.c
src/rrd_tool.h
src/rrd_tune.c
src/rrd_update.c
src/rrd_version.c
src/rrd_xport.c
src/rrd_xport.h
src/rrdupdate.c

diff --git a/CHANGES b/CHANGES
index c24e392ac8c40d4f43e5ce18ca90dc226a22bfaf..8a390283ba55ac461bfd521061f3b2ddd4514d2c 100644 (file)
--- a/CHANGES
+++ b/CHANGES
@@ -1,3 +1,70 @@
+RRDtool 1.4.6 - 2012-01-16
+==========================
+Enhancements:
+ * Added --json option to xport with inspiration from Erik Kastner and
+   Michael Markstaller -- Tobi
+
+ * updated win32 port -- Larry Adams and the cacti team
+
+ * configure option to disable building rrd_graph: --disable-rrd_graph
+   With support from Ulf Zimmermann (OpenLane)
+
+Bugfixes:
+ * fixed segfault in rrdtool (xport, fetch, graph) when handling
+   error conditions. -- James Brown
+ * improve compilation robustness in finding pic flags
+ * fix warnings in ruby bindings
+ * fix horizontal alignment of AREAS and LINES in graph output
+ * improved grid-fitting in graph output
+ * simplified configure tests for libwrap and libdbi
+ * rpn compare operators CAN return unknown ... (#293)
+ * do not require gettext 0.18 (0.17 is sufficient)
+ * improved rpm spec file -- Bernard Li
+ * fix glib dependency for --disable-rrd_graph and update library versions
+   (#323)
+ * fix uninitialized variable in rrd_graph (#322)
+ * fix issues with logarithmic charts (#296) -- Christoph Biedl
+ * improved data reduction algorithm in graph: after fetching, data must be
+   reduced to at least chart resolution, else some data will not get plotted.
+   fix for #298
+ * properly handle the case where RRDCACHED_ADDRESS is an empty string
+ * the number of COMPUTE rpn nodes is architecture dependent. calculate the
+   right number and complain otherwise. Fix for #300.
+ * make rrd_mkdir_p work on bsd* Unixes too ... their dirname call works
+   differently ... #305 
+ * allow to restore XML files with zero row rras ... this is a degenerated
+   case that does not occur in the wild, as rrdtool prevents the creation
+   of such rrd files. But rrdtool restore 1.3 did allows to create them via
+   restore.  Now this is possible again. #310.
+ * the first TREND* value can be calculated earlier ... -- fredrick (#312)
+ * actually link with LIBINTL if we got it ... should make solaris happy
+ * dbi_result_get_datetime_idx() return timestamp in UTC, but time axis on
+   graph supposed to be in local time. #321
+ * fix ruby binding for rrd_xport #318
+ * free step_list on error. fix for #317
+ * fix buffer overflow for LONG lines in journal handling code for update
+   requests. #316
+ * fix alignment of centered items ... title and footer
+ * fix for the header size problem and its effects on rrd_resize
+ * refuse to build if troff and nroff are not around #302
+ * plug memory leak in lua bindings #301
+ * improve cross compiling -- Michael Olbrich
+ * fix rrd_create behaviour when mmapping on a full filesystem by actually
+   'filling' the file with zero. -- Francois-Xavier Bourlet
+ * with libwrap use 'rrdcached' as the name of our daemon and not just
+   rrdcache
+ * bring spacing around graph back in line with 1.2 goodness ... in
+   connection with no-legend and no title
+ * do not mistake "sqlxxabc.rrd" for a libdbi specification -- Peter Stamfest
+ * if rrd_cgi fails to parse stuff, do NOT try to fix up the mess ... it is bound to fail
+ * update timestamp continuity checks in rrd_cached ... allow sub-second
+   precision
+ * fix double free in rrd_resize
+ * do not close the file handle to the resize file of there was a problem
+   getting it in the first place.
+
+
 RRDtool 1.4.5 - 2010-12-26
 ==========================
 Bugfixes:
@@ -9,7 +76,7 @@ Bugfixes:
  * rrdgraph-libdbi: print error message instead of dumping core on sql
    problem -- Pavel Nikiforov
  * rrdgraph-libdbi: properly allocated response buffer -- Pavel Nikiforov
- * rrdtool: in remote mode, make argument count for remote commmands strict
+ * rrdtool: in remote mode, make argument count for remote commands strict
    -- Dave Peticolas
  * rrdgraph: fix problems with second %s in right-axis format -- tobi
  * compilation: works on MSVC2008 now -- jkane mail.com
@@ -17,7 +84,7 @@ Bugfixes:
    calling set locale -- tobi
  * rrd_cgi: windows compilation fix --  jkane mail.com
  * rrdgraph: fix use of %s in strftime (G)PRINT commands #277 -- tobi
- * ruby: fix bindings to be compatible with curent ruby implementations #279
+ * ruby: fix bindings to be compatible with current ruby implementations #279
  * rrdcached: Ensure that response_read() always calls fflush() or fclose() #278
    -- kevin brintnall
  * rrd_client: free addrinfo list after use ... -- Christian Magnusson
index cc7612457cf950ed4f315c758762af63b22fadf7..b61102f3eab4f6c5e0a06eee3a92c639015105bd 100644 (file)
@@ -124,7 +124,7 @@ sub cmd (@);
 sub end ();
 sub read ();
 
-$VERSION=1.4004;
+$VERSION=1.4006;
 
 sub start ($){
   croak "rrdtool is already running"
index 3c7dc5050b150063be955595062bb96d9c27e6a8..d6ebb34fd848b58f30efdbf9528ec931de73b297 100644 (file)
@@ -7,7 +7,7 @@ use vars qw(@ISA $VERSION);
 
 require DynaLoader;
 
-$VERSION=1.4004;
+$VERSION=1.4006;
 
 bootstrap RRDs $VERSION;
 
index a3425ff758dad2041a3432093439760c4cce8087..4bc43e9e7f803ba9a625c68a9f9d94ead8b8cbe2 100644 (file)
@@ -41,7 +41,7 @@ Where you want to install the software.
 Once you have decided. Save the two locations into environment variables.
 
  BUILD_DIR=/tmp/rrdbuild
- INSTALL_DIR=/opt/rrdtool-1.4.5
+ INSTALL_DIR=/opt/rrdtool-1.4.6
 
 
 If your F</tmp> is mounted with the option noexec (RHEL seems todo that) you have to choose
@@ -55,9 +55,9 @@ Now make sure the BUILD_DIR exists and go there:
 Lets first assume you already have all the necessary libraries
 pre-installed. 
 
- wget http://oss.oetiker.ch/rrdtool/pub/rrdtool-1.4.5.tar.gz
- gunzip -c rrdtool-1.4.5.tar.gz | tar xf -
- cd rrdtool-1.4.5
+ wget http://oss.oetiker.ch/rrdtool/pub/rrdtool-1.4.6.tar.gz
+ gunzip -c rrdtool-1.4.6.tar.gz | tar xf -
+ cd rrdtool-1.4.6
  ./configure --prefix=$INSTALL_DIR && make && make install
 
 Ok, this was very optimistic. This try will probably have ended with
@@ -345,7 +345,7 @@ because it seems that a fair number of people have ill configured python and
 tcl setups that would prevent RRDtool from building if they are included in
 their current state.
 
- cd $BUILD_DIR/rrdtool-1.4.5
+ cd $BUILD_DIR/rrdtool-1.4.6
  ./configure --prefix=$INSTALL_DIR --disable-tcl --disable-python
  $MAKE clean
  $MAKE
index d7e6bb34616e9a4c76a75e0b168136e0f76adf04..bf9fd529bde53da81173fabf4e007caa34f77abd 100644 (file)
@@ -9,6 +9,7 @@ S<[B<-s>|B<--start> I<seconds>]>
 S<[B<-e>|B<--end> I<seconds>]>
 S<[B<-m>|B<--maxrows> I<rows>]>
 S<[B<--step> I<value>]>
+S<[B<--json>]>
 S<[B<--daemon> I<address>]>
 S<[B<DEF:>I<vname>B<=>I<rrd>B<:>I<ds-name>B<:>I<CF>]>
 S<[B<CDEF:>I<vname>B<=>I<rpn-expression>]>
@@ -58,6 +59,10 @@ For a list of accepted formats, see the B<-l> option in the L<rrdcached> manual.
 
   rrdtool xport --daemon unix:/var/run/rrdcached.sock ...
 
+=item B<--json>
+
+produce json formated output (instead of xml)
+
 =item B<--enumds>
 
 The generated xml should contain the data values in enumerated tags.
index 07f8d685482452cd5aca7bd3c3b6ef6bb2759c49..49e85c4b10a2ad356c3e62f76b2185eb8d70e089 100644 (file)
@@ -10,7 +10,7 @@
 
 Summary: Round Robin Database Tool to store and display time-series data
 Name: rrdtool
-Version: 1.4.5
+Version: 1.4.6
 Release: 1%{?dist}
 License: GPLv2+ with exceptions
 Group: Applications/Databases
index 09dfb58d25e24d83c20c7de0f6444f97ac8ef1fc..7bfb8a051a9876e4d166df0d8f1e8c8abd20de1a 100644 (file)
@@ -1,5 +1,5 @@
 /*****************************************************************************
- * RRDtool 1.4.5  Copyright by Tobi Oetiker, 1997-2010
+ * RRDtool 1.4.6  Copyright by Tobi Oetiker, 1997-2010
  *****************************************************************************
  * pngsize.c  determine the size of a PNG image
  *****************************************************************************/
index e5e3f95662f269d2087d3b1e013996f1a2ea020e..16dfdbe1cc377b7ca466ef5fe8d200ee9059c067 100644 (file)
--- a/src/rrd.h
+++ b/src/rrd.h
@@ -1,5 +1,5 @@
 /*****************************************************************************
- * RRDtool 1.4.5  Copyright by Tobi Oetiker, 1997-2010
+ * RRDtool 1.4.6  Copyright by Tobi Oetiker, 1997-2010
  *****************************************************************************
  * rrdlib.h   Public header file for librrd
  *****************************************************************************
index 7267cd6cb95447c0e9c7de59d02cf383947258a7..bbe09e5a9a96cad6cfdd258e4594168fc809056c 100644 (file)
@@ -1,5 +1,5 @@
 /*****************************************************************************
- * RRDtool 1.4.5  Copyright by Tobi Oetiker, 1997-2010
+ * RRDtool 1.4.6  Copyright by Tobi Oetiker, 1997-2010
  *****************************************************************************
  * rrd_cgi.c  RRD Web Page Generator
  *****************************************************************************/
index d771d828e04bba264c1126a3289c3f2eeb205059..3f832fa01eadf13d0eea11ebeec998a3bf0f8cd3 100644 (file)
@@ -1,5 +1,5 @@
 /*****************************************************************************
- * RRDtool 1.4.5  Copyright by Tobi Oetiker, 1997-2010
+ * RRDtool 1.4.6  Copyright by Tobi Oetiker, 1997-2010
  *****************************************************************************
  * rrd_create.c  creates new rrds
  *****************************************************************************/
index 6af79696e8fedafb3a5b5acb890bddde49e1932f..508458155b3ff6a96ce097af29dc2c650b3f20ad 100644 (file)
@@ -1,5 +1,5 @@
 /*****************************************************************************
- * RRDtool 1.4.5  Copyright by Tobi Oetiker, 1997-2010
+ * RRDtool 1.4.6  Copyright by Tobi Oetiker, 1997-2010
  *****************************************************************************
  * rrd_datalang  A system for passing named and typed parameters between
  *               the different parts of rrdtool
index 42c16b0e2d650805ae360833d6a7e3bb9fa1c2bf..f0682e43460a8e635e1e03793c4bd5d98f3d3520 100644 (file)
@@ -1,5 +1,5 @@
 /*****************************************************************************
- * RRDtool 1.4.5  Copyright by Tobi Oetiker, 1997-2010
+ * RRDtool 1.4.6  Copyright by Tobi Oetiker, 1997-2010
  * This code is stolen from rateup (mrtg-2.x) by Dave Rand
  *****************************************************************************
  * diff calculate the difference between two very long integers available as
index 8fd8d7d47ff56807f6b5fafeab7072ed5e5cb124..811dc3279b56c6d1b1893bd4cf2bfd944acf100d 100644 (file)
@@ -1,5 +1,5 @@
 /*****************************************************************************
- * RRDtool 1.4.5  Copyright by Tobi Oetiker, 1997-2010
+ * RRDtool 1.4.6  Copyright by Tobi Oetiker, 1997-2010
  *****************************************************************************
  * rrd_dump  Display a RRD
  *****************************************************************************
index 4c921de06d1ca10dbd047df7c38b56d94d94f721..7ce5a8daaddd0d277c60dca25901907588c8b714 100644 (file)
@@ -1,5 +1,5 @@
 /*****************************************************************************
- * RRDtool 1.4.5  Copyright by Tobi Oetiker, 1997-2010
+ * RRDtool 1.4.6  Copyright by Tobi Oetiker, 1997-2010
  *****************************************************************************
  * rrd_error.c   Common Header File
  *****************************************************************************
index 25f47e1bd8e09fcb9bf8d53592b136e80d40edbd..bcd1e245656f568d576bcf31cbb2a3e64cf17fa1 100644 (file)
@@ -1,5 +1,5 @@
 /*****************************************************************************
- * RRDtool 1.4.5  Copyright by Tobi Oetiker, 1997-2010
+ * RRDtool 1.4.6  Copyright by Tobi Oetiker, 1997-2010
  *****************************************************************************
  * rrd_fetch.c  read date from an rrd to use for further processing
  *****************************************************************************
index a6e2564a177267b519ce371b68205a31e2d3afb5..e444e2314346f61eac8532690233c1e15a22b289 100644 (file)
@@ -1,5 +1,5 @@
 /*****************************************************************************
- * RRDtool 1.4.5  Copyright by Tobi Oetiker, 1997-2010
+ * RRDtool 1.4.6  Copyright by Tobi Oetiker, 1997-2010
  *****************************************************************************
  * rrd_first Return
  *****************************************************************************
index dcf671fa1fa0613d47f03ac4b4c456e2b8a84a1d..c2734c7f03cc2974bea8c7ad9f8a920ddcc1d2cd 100644 (file)
@@ -1,5 +1,5 @@
 /*****************************************************************************
- * RRDtool 1.4.5  Copyright by Tobi Oetiker, 1997-2010
+ * RRDtool 1.4.6  Copyright by Tobi Oetiker, 1997-2010
  *****************************************************************************
  * rrd_format.c  RRD Database Format helper functions
  *****************************************************************************
index 518f2e0257fc46751d19981cc3401e70a856437e..06e7f3f0ec7c16a57982026570fce23a635b1233 100644 (file)
@@ -1,5 +1,5 @@
 /*****************************************************************************
- * RRDtool 1.4.5  Copyright by Tobi Oetiker, 1997-2010
+ * RRDtool 1.4.6  Copyright by Tobi Oetiker, 1997-2010
  *****************************************************************************
  * rrd_format.h  RRD Database Format header
  *****************************************************************************/
index f7844326fcb332e7915993c1a67f6699adc69a33..d3d550cac1fe62d753db3c6800cb87cb1d8d8924 100644 (file)
@@ -1,5 +1,5 @@
 /****************************************************************************
- * RRDtool 1.4.5  Copyright by Tobi Oetiker, 1997-2010
+ * RRDtool 1.4.6  Copyright by Tobi Oetiker, 1997-2010
  ****************************************************************************
  * rrd_gfx.c  graphics wrapper for rrdtool
   **************************************************************************/
index e1e1f46fa3ad93e19dcc381526fde5b3e71e85e2..78565b0456d9f3f92d2416f92e3e9aede0cd8e23 100644 (file)
@@ -1,5 +1,5 @@
 /****************************************************************************
- * RRDtool 1.4.5  Copyright by Tobi Oetiker, 1997-2010
+ * RRDtool 1.4.6  Copyright by Tobi Oetiker, 1997-2010
  ****************************************************************************
  * rrd__graph.c  produce graphs from data in rrdfiles
  ****************************************************************************/
index 5031dafde68f0549d81fb78fe32fb5b19810c358..13ff1c3886981fde11cab0327a7bed39d04e2748 100644 (file)
@@ -1,5 +1,5 @@
 /****************************************************************************
- * RRDtool 1.4.5  Copyright by Tobi Oetiker, 1997-2010
+ * RRDtool 1.4.6  Copyright by Tobi Oetiker, 1997-2010
  ****************************************************************************
  * rrd_graph_helper.c  commandline parser functions 
  *                     this code initially written by Alex van den Bogaerdt
index 7aaaa5da57c30fdb8bdf71ad2dcf42ea5cb7cd24..5a25cd66b2874f940e9a0cfc20ecd8f79ebff48b 100644 (file)
@@ -1,5 +1,5 @@
 /*****************************************************************************
- * RRDtool 1.4.5  Copyright by Tobi Oetiker, 1997-2010
+ * RRDtool 1.4.6  Copyright by Tobi Oetiker, 1997-2010
  *****************************************************************************
  * rrd_hw.c : Support for Holt-Winters Smoothing/ Aberrant Behavior Detection
  *****************************************************************************
index d52e56e1c9e47b5a00b74b9746c4a49b3125f70f..03c8491a9485c83df40495756e78fc9780016227 100644 (file)
@@ -1,5 +1,5 @@
 /*****************************************************************************
- * RRDtool 1.4.5  Copyright by Tobi Oetiker, 1997-2010
+ * RRDtool 1.4.6  Copyright by Tobi Oetiker, 1997-2010
  *****************************************************************************
  * rrd_hw.h : Support for Holt-Winters Smoothing/ Aberrant Behavior Detection
  *****************************************************************************/
index 7696d2f61a3331fbb6fc3086a4593e0a9fe9b88f..ebcccc345e0a4ec5d60ab0234533bec5b81dcbd8 100644 (file)
@@ -1,5 +1,5 @@
 /*****************************************************************************
- * RRDtool 1.4.5  Copyright by Takao Fujiwara, 2008
+ * RRDtool 1.4.6  Copyright by Takao Fujiwara, 2008
  *****************************************************************************
  * rrd_i18n.h   Common Header File
  *****************************************************************************/
index b5568cc2d3c7a0b68c956e8238756a959902a634..1df82c172d26d74d3cb6ef0d70ee758463c8ff44 100644 (file)
@@ -1,5 +1,5 @@
 /*****************************************************************************
- * RRDtool 1.4.5  Copyright by Tobi Oetiker, 1997-2010
+ * RRDtool 1.4.6  Copyright by Tobi Oetiker, 1997-2010
  *****************************************************************************
  * rrd_info  Get Information about the configuration of an RRD
  *****************************************************************************/
index 3e3782bf83f9234340baf02d7144f58dc325889b..5555e440d2d0a4081c10cba0c920305128133a29 100644 (file)
@@ -1,5 +1,5 @@
 /*****************************************************************************
- * RRDtool 1.4.5  Copyright by Tobi Oetiker, 1997-2010
+ * RRDtool 1.4.6  Copyright by Tobi Oetiker, 1997-2010
  * This file:     Copyright 2003 Peter Stamfest <peter@stamfest.at> 
  *                             & Tobias Oetiker
  * Distributed under the GPL
index 0a71e3e55fe566ef32cd6f8f841d2b4740595a4d..a797e6f39591bf51c0b6c781bbd32391782130ff 100644 (file)
@@ -1,5 +1,5 @@
 /*****************************************************************************
- * RRDtool 1.4.5  Copyright by Tobi Oetiker, 1997-2010
+ * RRDtool 1.4.6  Copyright by Tobi Oetiker, 1997-2010
  *****************************************************************************
  * rrd_last.c
  *****************************************************************************
index fe537dfa4a2359fedde301284a28c73117c60f67..20bc95f6ebaffcd8b0acf52cf02d6554300ca5d0 100644 (file)
@@ -1,5 +1,5 @@
 /*****************************************************************************
- * RRDtool 1.4.5  Copyright by Tobi Oetiker, 1997-2010
+ * RRDtool 1.4.6  Copyright by Tobi Oetiker, 1997-2010
  *                Copyright by Florian Forster, 2008
  *****************************************************************************
  * rrd_lastupdate  Get the last datum entered for each DS
index a405bdff1a832aadf5b768dc810038699fdfc1c2..8dd0315ee661809d474a951bf0611d6a08add3aa 100644 (file)
@@ -1,5 +1,5 @@
 /*****************************************************************************
- * RRDtool 1.4.5  Copyright by Tobi Oetiker, 1997-2010
+ * RRDtool 1.4.6  Copyright by Tobi Oetiker, 1997-2010
  * This file:     Copyright 2003 Peter Stamfest <peter@stamfest.at> 
  *                             & Tobias Oetiker
  * Distributed under the GPL
index a99f0ab6465cfcf5ff0fa185987ec9bdcdb83b6f..34acdf785a29961499f5f3c9af9428fdd7b6b8f7 100644 (file)
@@ -1,5 +1,5 @@
 /*****************************************************************************
- * RRDtool 1.4.5  Copyright by Tobi Oetiker, 1997-2010
+ * RRDtool 1.4.6  Copyright by Tobi Oetiker, 1997-2010
  *****************************************************************************
  * rrd_open.c  Open an RRD File
  *****************************************************************************
index fb989a9d71c5da9c57e6c3bdf9c478ed565d268b..e7f977c1dc9e1aec0f7e09bc9ed1294d241a1c9e 100644 (file)
@@ -1,5 +1,5 @@
 /*****************************************************************************
- * RRDtool 1.4.5  Copyright by Tobi Oetiker, 1997-2010
+ * RRDtool 1.4.6  Copyright by Tobi Oetiker, 1997-2010
  *****************************************************************************
  * rrd_resize.c Alters size of an RRA
  *****************************************************************************
index 77c8302d0cc79ee1c57230892180bb2b5b4c90b5..abd6a409c86ac0f6828d79d6bda597d3638bd9ca 100644 (file)
@@ -1,5 +1,5 @@
 /*****************************************************************************
- * RRDtool 1.4.5  Copyright by Tobi Oetiker, 1997-2010                    
+ * RRDtool 1.4.6  Copyright by Tobi Oetiker, 1997-2010                    
  *****************************************************************************
  * rrd_restore.c  Contains logic to parse XML input and create an RRD file
  * This file:
index 7a9a2d12d141f4f3ab2bd0d25f5885641e26e73b..bba89404791b0e0aa01bf782d5e252cb4665524c 100644 (file)
@@ -1,5 +1,5 @@
 /****************************************************************************
- * RRDtool 1.4.5  Copyright by Tobi Oetiker, 1997-2010
+ * RRDtool 1.4.6  Copyright by Tobi Oetiker, 1997-2010
  ****************************************************************************
  * rrd_rpncalc.c  RPN calculator functions
  ****************************************************************************/
index 1ddf2af1f93fec025b4598dc200686b6627a32cd..c77084fd53442671e49e10a59165683007f4530e 100644 (file)
@@ -1,5 +1,5 @@
 /****************************************************************************
- * RRDtool 1.4.5  Copyright by Tobi Oetiker, 1997-2010
+ * RRDtool 1.4.6  Copyright by Tobi Oetiker, 1997-2010
  ****************************************************************************
  * rrd_rpncalc.h  RPN calculator functions
  ****************************************************************************/
index 16d6f05f8933afc1e5b3e642e84f9b80f3af0e0b..d94cc38156f997a6591c1c6528ede4250f69efe3 100644 (file)
@@ -1,5 +1,5 @@
 /*****************************************************************************
- * RRDtool 1.4.5  Copyright by Tobi Oetiker, 1997-2010
+ * RRDtool 1.4.6  Copyright by Tobi Oetiker, 1997-2010
  * This file:     Copyright 2003 Peter Stamfest <peter@stamfest.at> 
  *                             & Tobias Oetiker
  * Distributed under the GPL
index ddbf92e121e3ffc4f4357f046e98b367c69e19b2..626b6ffccd352b51bf8a9a57e493ab04b709dd76 100644 (file)
@@ -1,5 +1,5 @@
 /*****************************************************************************
- * RRDtool 1.4.5  Copyright by Tobi Oetiker, 1997-2010
+ * RRDtool 1.4.6  Copyright by Tobi Oetiker, 1997-2010
  * This file:     Copyright 2003 Peter Stamfest <peter@stamfest.at> 
  *                             & Tobias Oetiker
  * Distributed under the GPL
index 2c67353aa0de360c8f59a8f7618ad2ca64829924..704118a6f7e06257c0b9582af8fde2821cfb3c34 100644 (file)
@@ -1,5 +1,5 @@
 /*****************************************************************************
- * RRDtool 1.4.5  Copyright by Tobi Oetiker, 1997-2010
+ * RRDtool 1.4.6  Copyright by Tobi Oetiker, 1997-2010
  *****************************************************************************
  * rrd_tool.c  Startup wrapper
  *****************************************************************************/
index e3dbde780292eed25405c9870c1924957ce9bca8..449b4555418f5a86907b1c7ff7c06ee01405beba 100644 (file)
@@ -1,5 +1,5 @@
 /*****************************************************************************
- * RRDtool 1.4.5  Copyright by Tobi Oetiker, 1997-2010
+ * RRDtool 1.4.6  Copyright by Tobi Oetiker, 1997-2010
  *****************************************************************************
  * rrd_tool.h   Common Header File
  *****************************************************************************/
index 43b14b2d8b5fcc87e7cc6efb62fb80c972b0260a..46e6cb211945de630d9a7e6560e30260eace0494 100644 (file)
@@ -1,5 +1,5 @@
 /*****************************************************************************
- * RRDtool 1.4.5  Copyright by Tobi Oetiker, 1997-2010
+ * RRDtool 1.4.6  Copyright by Tobi Oetiker, 1997-2010
  *****************************************************************************
  * change header parameters of an rrd
  *****************************************************************************
index 0c0672e83d8271f32ad0b8a9edfbe78f0456a853..ef9e60c48d55e87c2aaa6a977a603d624ee5c58f 100644 (file)
@@ -1,5 +1,5 @@
 /*****************************************************************************
- * RRDtool 1.4.5  Copyright by Tobi Oetiker, 1997-2010
+ * RRDtool 1.4.6  Copyright by Tobi Oetiker, 1997-2010
  *                Copyright by Florian Forster, 2008
  *****************************************************************************
  * rrd_update.c  RRD Update Function
index 056c4453f7a1cf9b91dcf4491f705817c23885de..3891af44373ffbc42f661b347ffc66f42b470ee6 100644 (file)
@@ -1,5 +1,5 @@
 /*****************************************************************************
- * RRDtool 1.4.5  Copyright by Tobi Oetiker, 1997-2010
+ * RRDtool 1.4.6  Copyright by Tobi Oetiker, 1997-2010
  *****************************************************************************
  * rrd_version Return
  *****************************************************************************
index e23cc981945a85bb82f048c7b4d625f89366444d..447c1539c8451ab0c7b29a3fb3042ef9e2c22ff4 100644 (file)
@@ -1,5 +1,5 @@
 /****************************************************************************
- * RRDtool 1.4.5  Copyright by Tobi Oetiker, 1997-2010
+ * RRDtool 1.4.6  Copyright by Tobi Oetiker, 1997-2010
  ****************************************************************************
  * rrd_xport.c  export RRD data 
  ****************************************************************************/
index c1ddedc9db8756df190121a114a68dd7027c2b88..be3a022f203a8889047526231c0cb0e21daeca8e 100644 (file)
@@ -1,5 +1,5 @@
 /****************************************************************************
- * RRDtool 1.4.5  Copyright by Tobi Oetiker, 1997-2010
+ * RRDtool 1.4.6  Copyright by Tobi Oetiker, 1997-2010
  ****************************************************************************
  * rrd_xport.h  contains XML related constants
  ****************************************************************************/
index 5a231bc7f36f55da116e6b96c8ebc0fa9f6decb2..df3f36a25c4c77905c6dec7331d6cded21e098c5 100644 (file)
@@ -1,5 +1,5 @@
 /*****************************************************************************
- * RRDtool 1.4.5  Copyright by Tobi Oetiker, 1997-2010
+ * RRDtool 1.4.6  Copyright by Tobi Oetiker, 1997-2010
  *****************************************************************************
  * rrdupdate.c  Main program for the (standalone) rrdupdate utility
  *****************************************************************************