Skip Menu |

This queue is for tickets about the Net-TFTPd CPAN distribution.

Report information
The Basics
Id: 80689
Status: rejected
Priority: 0/
Queue: Net-TFTPd

People
Owner: Nobody in particular
Requestors: Xavier (no email address)
Cc:
AdminCc:

Bug Information
Severity: Normal
Broken in: 0.06
Fixed in: (no value)



Subject: Bad version in example
Hi, the version used in simpleTFTPd.pl does not points to 0.06. I'll use this patch for Debian packaging : --- libnet-tftpd-perl-0.06.orig/simpleTFTPd.pl +++ libnet-tftpd-perl-0.06/simpleTFTPd.pl @@ -1,6 +1,6 @@ #!/usr/bin/perl use strict; -use Net::TFTPd 0.05 qw(%OPCODES); +use Net::TFTPd qw(%OPCODES); # change ROOTDIR to your TFTP root directory my $rootdir = $ARGV[0];
The 0.05 in the simpleTFTPd.pl example file is not specifying to use version 0.05, it is specifying the MINIMUM version to use is 0.05 meaning 0.05 or above will work. There are some calls in simpleTFTPd.pl that will not work with older versions of the module.