From be6627f4107d15016009d0abd8988808cb73c6db Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?St=C3=A9phane=20Fillod=2C=20F8CFE?= Date: Tue, 7 Oct 2008 17:55:48 +0000 Subject: [PATCH] SI/VR fix from Roger git-svn-id: https://hamlib.svn.sourceforge.net/svnroot/hamlib/trunk@2408 7ae35d74-ebe9-4afe-98af-79ac388436b8 --- uniden/uniden.c | 5 +++-- 1 file changed, 3 insertions(+), 2 deletions(-) diff --git a/uniden/uniden.c b/uniden/uniden.c index 934f7a074..89de83180 100644 --- a/uniden/uniden.c +++ b/uniden/uniden.c @@ -2,7 +2,7 @@ * Hamlib Uniden backend - main file * Copyright (c) 2001-2008 by Stephane Fillod * - * $Id: uniden.c,v 1.13 2008-05-04 15:33:26 fillods Exp $ + * $Id: uniden.c,v 1.14 2008-10-07 17:55:48 fillods Exp $ * * This library is free software; you can redistribute it and/or modify * it under the terms of the GNU Library General Public License as @@ -591,7 +591,8 @@ const char * uniden_get_info(RIG *rig) if (ret == RIG_OK) { /* overwrite "VR" */ - infobuf[info_len] = ','; + /* FIXME: need to filter \r or it screws w/ stdout */ + infobuf[info_len] = '\n'; infobuf[info_len+1] = ' '; } else