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
commit07e6b3a81b1581cb0aba096b5610d7536d162159 (patch)
tree55ecd4a1936c8cfaf34499fc683b727fbe594d2d /xml2cmp
parentfa7333e80e893cd28f9aecfa8b2f51ea1a89061d (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 b0ab5df54..d8ca7cdc7 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;