diff options
-rw-r--r-- | smb4k/core/smb4kfileio.cpp | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/smb4k/core/smb4kfileio.cpp b/smb4k/core/smb4kfileio.cpp index 75fddd1..d906e05 100644 --- a/smb4k/core/smb4kfileio.cpp +++ b/smb4k/core/smb4kfileio.cpp @@ -1344,7 +1344,7 @@ void Smb4KFileIO::processSudoers() // Create a temporary file and write the data to it: TQCString template_string = tempDir().local8Bit()+"/XXXXXX"; char tmp[template_string.length()+1]; - (void) qstrncpy( tmp, template_string, template_string.length()+1 ); + (void) tqstrncpy( tmp, template_string, template_string.length()+1 ); TQFile temp_file; int file_descriptor; @@ -1607,7 +1607,7 @@ void Smb4KFileIO::processSuperTab() // Create a temporary file and write the data to it: TQCString template_string = tempDir().local8Bit()+"/XXXXXX"; char tmp[template_string.length()+1]; - (void) qstrncpy( tmp, template_string, template_string.length()+1 ); + (void) tqstrncpy( tmp, template_string, template_string.length()+1 ); TQFile temp_file; int file_descriptor; |