From 5b92edfe5022f9f6d36cf6d8ad8ad596d1c7a24e Mon Sep 17 00:00:00 2001 From: hyung-hwan Date: Fri, 5 Aug 2011 09:53:43 +0000 Subject: [PATCH] fixed the wrong escape character for pio command splitting --- qse/lib/cmn/pio.c | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) diff --git a/qse/lib/cmn/pio.c b/qse/lib/cmn/pio.c index f7f33779..eca43a9c 100644 --- a/qse/lib/cmn/pio.c +++ b/qse/lib/cmn/pio.c @@ -1,5 +1,5 @@ /* - * $Id: pio.c 533 2011-08-04 15:43:28Z hyunghwan.chung $ + * $Id: pio.c 534 2011-08-04 15:53:43Z hyunghwan.chung $ * Copyright 2006-2011 Chung, Hyung-Hwan. This file is part of QSE. @@ -686,7 +686,7 @@ qse_pio_t* qse_pio_init ( if (mcmd == QSE_NULL) goto child_oops; fcnt = qse_strspl (mcmd, QSE_T(""), - QSE_T('\"'), QSE_T('\"'), QSE_T('\'')); + QSE_T('\"'), QSE_T('\"'), QSE_T('\\')); if (fcnt <= 0) { /* no field or an error */ @@ -709,7 +709,7 @@ qse_pio_t* qse_pio_init ( if (wcmd == QSE_NULL) goto child_oops; fcnt = qse_strspl (wcmd, QSE_T(""), - QSE_T('\"'), QSE_T('\"'), QSE_T('\'')); + QSE_T('\"'), QSE_T('\"'), QSE_T('\\')); if (fcnt <= 0) { /* no field or an error */