From: Brian S. <xue...@us...> - 2008-02-13 21:06:15
|
Update of /cvsroot/popfile/windows In directory sc8-pr-cvs1.sourceforge.net:/tmp/cvs-serv17100 Modified Files: Tag: b0_22_2 dbicapture.nsi Log Message: Fixed the problem that prevented dbicapture.exe from being used as a drop-in replacement for msgcapture.exe. All that had to be done was to treat /TIMEOUT=0 as if the command-line was empty! Index: dbicapture.nsi =================================================================== RCS file: /cvsroot/popfile/windows/Attic/dbicapture.nsi,v retrieving revision 1.1.2.1 retrieving revision 1.1.2.2 diff -C2 -d -r1.1.2.1 -r1.1.2.2 *** dbicapture.nsi 13 Feb 2008 21:04:33 -0000 1.1.2.1 --- dbicapture.nsi 13 Feb 2008 21:06:19 -0000 1.1.2.2 *************** *** 84,88 **** ;-------------------------------------------------------------------------- ! !define C_VERSION "0.0.1" !define C_OUTFILE "dbicapture.exe" --- 84,88 ---- ;-------------------------------------------------------------------------- ! !define C_VERSION "0.0.2" !define C_OUTFILE "dbicapture.exe" *************** *** 300,303 **** --- 300,304 ---- Pop $G_TRACELEVEL StrCmp $G_TRACELEVEL "" default + StrCmp $G_TRACELEVEL "/TIMEOUT=0" default StrCpy ${L_TEMP} $G_TRACELEVEL 13 StrCmp ${L_TEMP} "/TRACE_LEVEL=" 0 usage_error |