]> rtime.felk.cvut.cz Git - sojka/can-utils.git/blobdiff - canplayer.c
cangen: set unused payload to zero
[sojka/can-utils.git] / canplayer.c
index efce089fb9421c321bb6ba30d4c3c3bd42a6e85d..ff05f0f0d505c4177e8d51393b5386a7e94d4b48 100644 (file)
@@ -41,7 +41,7 @@
  * OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH
  * DAMAGE.
  *
- * Send feedback to <socketcan-users@lists.berlios.de>
+ * Send feedback to <linux-can@vger.kernel.org>
  *
  */
 
@@ -310,11 +310,12 @@ int main(int argc, char **argv)
                loops = 1;
        }
 
-       if (verbose > 1) /* use -v -v to see this */
+       if (verbose > 1) /* use -v -v to see this */
                if (infinite_loops)
                        printf("infinite_loops\n");
                else
                        printf("%d loops\n", loops);
+       }
 
        sleep_ts.tv_sec  =  gap / 1000;
        sleep_ts.tv_nsec = (gap % 1000) * 1000000;
@@ -423,11 +424,12 @@ int main(int argc, char **argv)
                                        txidx = get_txidx(device);
                                }
 
-                               if (txidx == STDOUTIDX) /* hook to print logfile lines on stdout */
+                               if (txidx == STDOUTIDX) /* hook to print logfile lines on stdout */
 
                                        printf("%s", buf); /* print the line AS-IS without extra \n */
+                                       fflush(stdout);
 
-                               else if (txidx > 0) { /* only send to valid CAN devices */
+                               else if (txidx > 0) { /* only send to valid CAN devices */
 
                                        if (parse_canframe(ascframe, &frame)) {
                                                fprintf(stderr, "wrong CAN frame format: '%s'!", ascframe);