From 2b00ce780bf9bd6bfd39bf802caccd047c7d0b31 Mon Sep 17 00:00:00 2001 From: tdressler <> Date: Sun, 11 May 2008 17:28:58 +0000 Subject: [PATCH] sync not supported by windows, use it not there git-svn-id: https://svn.fhem.de/fhem/trunk/fhem@177 2b470e98-0d58-463d-a4d8-8e2adae1ed80 --- FHEM/92_FileLog.pm | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/FHEM/92_FileLog.pm b/FHEM/92_FileLog.pm index ae06d6486..cf379f67d 100755 --- a/FHEM/92_FileLog.pm +++ b/FHEM/92_FileLog.pm @@ -97,7 +97,7 @@ FileLog_Log($$) print $fh "$t $n $s\n"; $fh->flush; - $fh->sync; + $fh->sync if !($^O eq 'MSWin32'); #not implemented in Windows } } return "";