From 59d0199df8204028ac78964d1ce6a2217997058b Mon Sep 17 00:00:00 2001 From: Kimmo Varis Date: Sun, 1 Jan 2006 23:33:16 +0000 Subject: [PATCH] PATCH: [ 1394759 ] Allows quotes in Rational ClearCase checkout comment - submitted by Gal Hammer --- Src/Changes.txt | 5 +++++ Src/MainFrm.cpp | 1 + 2 files changed, 6 insertions(+) diff --git a/Src/Changes.txt b/Src/Changes.txt index 5352fa3a0..66bc522ee 100644 --- a/Src/Changes.txt +++ b/Src/Changes.txt @@ -1,3 +1,8 @@ +2006-01-01 Kimmo + PATCH: [ 1394759 ] Allows quotes in Rational ClearCase checkout comment + Submitted by Gal Hammer + Src: MainFrm.cpp + 2006-01-01 Perry BUG: [ 1394857 ] cvs trunk does not compile, ANSI, FindEncodingIdFromNameOrAl Src: codepage_detect.cpp diff --git a/Src/MainFrm.cpp b/Src/MainFrm.cpp index 31312623e..a40a8490d 100644 --- a/Src/MainFrm.cpp +++ b/Src/MainFrm.cpp @@ -1176,6 +1176,7 @@ BOOL CMainFrame::SaveToVersionControl(CString& strSavePath) CString args; // checkout operation + m_strCCComment.Replace(_T("\""), _T("\\\"")); args.Format(_T("checkout -c \"%s\" \"%s\""), m_strCCComment, sname); CString vssPath = m_options.GetString(OPT_VSS_PATH); HANDLE hVss = RunIt(vssPath, args, TRUE, FALSE); -- 2.11.0