only send the aux string if there is one to send
This commit is contained in:
parent
dc893dba57
commit
29d8cc6035
1 changed files with 5 additions and 3 deletions
|
@ -103,9 +103,11 @@ while(1) {
|
|||
|
||||
print "done sending files.\n";
|
||||
|
||||
print "sending " ;
|
||||
print @ARGV;
|
||||
print ",\n";
|
||||
if(scalar(@ARGV)!=0) {
|
||||
print "sending " ;
|
||||
print @ARGV;
|
||||
print ",\n";
|
||||
}
|
||||
|
||||
$ob->write(@ARGV);
|
||||
$ob->write(',');
|
||||
|
|
Loading…
Reference in a new issue