ViewVC Help
View File | Revision Log | Show Annotations | Download File
/cvs/Convert-UUlib/example-decoder
(Generate patch)

Comparing Convert-UUlib/example-decoder (file contents):
Revision 1.13 by root, Fri Oct 10 16:54:45 2008 UTC vs.
Revision 1.15 by root, Mon Oct 13 12:12:56 2008 UTC

98 print "$k > $v, "; 98 print "$k > $v, ";
99 } 99 }
100 print "\n"; 100 print "\n";
101 } 101 }
102 102
103 $uu->decode_temp; 103 print $uu->filename;
104 print " temporarily decoded to ", $uu->binfile, "\n"; 104
105 $uu->remove_temp; 105 $uu->remove_temp;
106 106
107 print strerror $uu->decode; 107 if (my $err = $uu->decode ()) {
108 print ", ", strerror $err, "\n";
109 } else {
108 print " saved as uudst/", $uu->filename, "\n"; 110 print ", saved as uudst/", $uu->filename, "\n";
111 }
109} 112}
110 113
111print "cleanup...\n"; 114print "cleanup...\n";
112 115
113CleanUp(); 116CleanUp;

Diff Legend

Removed lines
+ Added lines
< Changed lines
> Changed lines