Thanks to visit codestin.com
Credit goes to github.com

Skip to content

Commit 9b422e1

Browse files
committed
minor fix for issue #309
1 parent 0037d52 commit 9b422e1

2 files changed

Lines changed: 2 additions & 2 deletions

File tree

plugins/generic/filesystem.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -72,7 +72,7 @@ def _checkFileLength(self, localFile, remoteFile, fileRead=False):
7272
infoMsg = "the remote file %s is larger than " % remoteFile
7373
infoMsg += "the local file %s" % localFile
7474
else:
75-
infoMsg += ", but the size differs from the local "
75+
infoMsg = "the remote file %s is smaller than " % remoteFile
7676
infoMsg += "file '%s' (%d bytes)" % (localFile, localFileSize)
7777

7878
logger.info(infoMsg)

procs/mysql/write_file_limit.sql

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1 +1 @@
1-
LIMIT 1 INTO OUTFILE '%OUTFILE%' LINES TERMINATED BY 0x%HEXSTRING%--
1+
LIMIT 0,1 INTO OUTFILE '%OUTFILE%' LINES TERMINATED BY 0x%HEXSTRING%--

0 commit comments

Comments
 (0)