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 "done sending files.\n";
|
||||||
|
|
||||||
print "sending " ;
|
if(scalar(@ARGV)!=0) {
|
||||||
print @ARGV;
|
print "sending " ;
|
||||||
print ",\n";
|
print @ARGV;
|
||||||
|
print ",\n";
|
||||||
|
}
|
||||||
|
|
||||||
$ob->write(@ARGV);
|
$ob->write(@ARGV);
|
||||||
$ob->write(',');
|
$ob->write(',');
|
||||||
|
|
Loading…
Add table
Reference in a new issue