From: Tobias Oetiker Date: Tue, 3 Oct 2006 07:52:51 +0000 (+0000) Subject: added missing file X-Git-Tag: 1.2.16~41 X-Git-Url: http://git.ipfire.org/cgi-bin/gitweb.cgi?a=commitdiff_plain;h=aa42b9056898581c73290f74fc398c01845addd0;p=thirdparty%2Frrdtool-1.x.git added missing file git-svn-id: svn://svn.oetiker.ch/rrdtool/branches/1.2/program@903 a5681a0c-68f1-0310-ab6d-d61299d08faa --- diff --git a/src/rrdupdate.c b/src/rrdupdate.c new file mode 100644 index 00000000..f442f87c --- /dev/null +++ b/src/rrdupdate.c @@ -0,0 +1,35 @@ +/***************************************************************************** + * RRDtool 1.2.15 Copyright by Tobi Oetiker, 1997-2006 + ***************************************************************************** + * rrdupdate.c Main program for the (standalone) rrdupdate utility + ***************************************************************************** + * $Id$ + *****************************************************************************/ + +#if defined(_WIN32) && !defined(__CYGWIN__) && !defined(__CYGWIN32__) && !defined(HAVE_CONFIG_H) +#include "../win32/config.h" +#else +#ifdef HAVE_CONFIG_H +#include "../rrd_config.h" +#endif +#endif + +#include "rrd.h" + +int +main(int argc, char **argv){ + rrd_update(argc,argv); + if (rrd_test_error()) { + printf("RRDtool " PACKAGE_VERSION " Copyright by Tobi Oetiker, 1997-2005\n\n" + "Usage: rrdupdate filename\n" + "\t\t\t[--template|-t ds-name:ds-name:...]\n" + "\t\t\ttime|N:value[:value...]\n\n" + "\t\t\tat-time@value[:value...]\n\n" + "\t\t\t[ time:value[:value...] ..]\n\n"); + + printf("ERROR: %s\n",rrd_get_error()); + rrd_clear_error(); + return 1; + } + return 0; +}