Changeset 4586

Show
Ignore:
Timestamp:
08/30/06 02:42:18 (2 years ago)
Author:
erijo
Message:

Close input and output files before trying to move them around, as this apparently causes troubles on FreeBSD softupdates filesystem.
Closes #175.

Files:
1 modified

Legend:

Unmodified
Added
Removed
  • trunk/licq/bin/licq.micqconvert

    r4526 r4586  
    132132    }     
    133133     
     134    close (IN); 
     135    close (TMP); 
     136 
    134137    $system_commands = "cp $filename_tmp $filename; rm $filename_tmp"; 
    135138    system($system_commands) == 0 or die "system() call failed: $?"; 
    136139     
    137140    print "Done.\n\n"; 
    138      
    139     close (IN); 
    140     close (TMP); 
    141141} 
    142142