summaryrefslogtreecommitdiff
path: root/xml2cmp
diff options
context:
space:
mode:
authorJens-Heiner Rechtien <hr@openoffice.org>2003-04-15 17:43:18 +0000
committerJens-Heiner Rechtien <hr@openoffice.org>2003-04-15 17:43:18 +0000
commit94570db56c74b09cd6bdcfb91060585b9ab35691 (patch)
treed7b1177c29977a810a3cea8b57e7539efa7bdefe /xml2cmp
parent9d4358a7d77152854082f0b405225089832cef7b (diff)
INTEGRATION: CWS adc5 (1.8.24); FILE MERGED
2003/04/14 14:49:05 np 1.8.24.1: 107553
Diffstat (limited to 'xml2cmp')
-rw-r--r--xml2cmp/source/support/syshelp.cxx8
1 files changed, 4 insertions, 4 deletions
diff --git a/xml2cmp/source/support/syshelp.cxx b/xml2cmp/source/support/syshelp.cxx
index 52d646a68674..593748fcddd0 100644
--- a/xml2cmp/source/support/syshelp.cxx
+++ b/xml2cmp/source/support/syshelp.cxx
@@ -2,9 +2,9 @@
*
* $RCSfile: syshelp.cxx,v $
*
- * $Revision: 1.8 $
+ * $Revision: 1.9 $
*
- * last change: $Author: np $ $Date: 2002-08-08 16:07:58 $
+ * last change: $Author: hr $ $Date: 2003-04-15 18:43:18 $
*
* The Contents of this file are made available subject to the terms of
* either of the following licenses
@@ -222,8 +222,8 @@ GatherFileNames( List<Simstr> & o_sFiles,
if (++nAliveCounter % 100 == 1)
std::cout << "." << std::flush;
- strcpy(sFilter, i_sSrcDirectory);
- strcat(sFilter,C_sXML_END);
+ strcpy(sFilter, i_sSrcDirectory); // STRCPY SAFE HERE
+ strcat(sFilter,C_sXML_END); // STRCAT SAFE HERE
hFile = _findfirst( sFilter, &aEntry );
for ( bFindMore = hFile == -1;