From: Tobias Oetiker Date: Sun, 16 Feb 2003 12:32:24 +0000 (+0000) Subject: if output is - there is not need to deref the handler X-Git-Tag: 1.2rc1~152 X-Git-Url: http://git.ipfire.org/gitweb.cgi?a=commitdiff_plain;h=a6bae51fd0ffbe316bcd7c72676495f6d306c0a6;p=thirdparty%2Frrdtool-1.x.git if output is - there is not need to deref the handler git-svn-id: svn://svn.oetiker.ch/rrdtool/trunk/program@182 a5681a0c-68f1-0310-ab6d-d61299d08faa --- diff --git a/src/rrd_restore.c b/src/rrd_restore.c index ccac072d..a0ef6359 100644 --- a/src/rrd_restore.c +++ b/src/rrd_restore.c @@ -405,7 +405,7 @@ rrd_write(char *file_name, rrd_t *rrd) FILE *rrd_file=NULL; if (strcmp("-",file_name)==0){ - *rrd_file= *stdout; + rrd_file= stdout; } else { int fd = open(file_name,O_RDWR|O_CREAT|O_EXCL,0666); if (fd == -1 || (rrd_file = fdopen(fd,"wb")) == NULL) {