- remove only CR or LF from the end of a bochsrc line
This commit is contained in:
parent
4fc67c3aac
commit
bf20e99f4c
@ -1,5 +1,5 @@
|
|||||||
/////////////////////////////////////////////////////////////////////////
|
/////////////////////////////////////////////////////////////////////////
|
||||||
// $Id: config.cc,v 1.8 2004-07-28 19:36:42 vruppert Exp $
|
// $Id: config.cc,v 1.9 2004-08-01 19:17:18 vruppert Exp $
|
||||||
/////////////////////////////////////////////////////////////////////////
|
/////////////////////////////////////////////////////////////////////////
|
||||||
//
|
//
|
||||||
// Copyright (C) 2002 MandrakeSoft S.A.
|
// Copyright (C) 2002 MandrakeSoft S.A.
|
||||||
@ -1886,7 +1886,7 @@ parse_bochsrc(char *rcfile)
|
|||||||
ret = fgets(line, sizeof(line)-1, fd);
|
ret = fgets(line, sizeof(line)-1, fd);
|
||||||
line[sizeof(line) - 1] = '\0';
|
line[sizeof(line) - 1] = '\0';
|
||||||
int len = strlen(line);
|
int len = strlen(line);
|
||||||
if (len>0)
|
if ((len>0) && (line[len-1] < ' '))
|
||||||
line[len-1] = '\0';
|
line[len-1] = '\0';
|
||||||
if ((ret != NULL) && strlen(line)) {
|
if ((ret != NULL) && strlen(line)) {
|
||||||
if (parse_line_unformatted(rcfile, line) < 0) {
|
if (parse_line_unformatted(rcfile, line) < 0) {
|
||||||
|
Loading…
Reference in New Issue
Block a user