From 88e9c5aedc8a5592191b4bb6c84f9f98d484c103 Mon Sep 17 00:00:00 2001 From: oetiker Date: Tue, 3 Oct 2006 07:52:51 +0000 Subject: [PATCH] added missing file git-svn-id: svn://svn.oetiker.ch/rrdtool/branches/1.2@903 a5681a0c-68f1-0310-ab6d-d61299d08faa --- program/src/rrdupdate.c | 35 +++++++++++++++++++++++++++++++++++ 1 file changed, 35 insertions(+) create mode 100644 program/src/rrdupdate.c diff --git a/program/src/rrdupdate.c b/program/src/rrdupdate.c new file mode 100644 index 00000000..f442f87c --- /dev/null +++ b/program/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; +} -- 2.30.2