mirror of
https://github.com/moparisthebest/wget
synced 2024-07-03 16:38:41 -04:00
Remove shebang line from test libraries.
This commit is contained in:
parent
3c1725e7a1
commit
124f1050af
@ -1,3 +1,9 @@
|
||||
2008-11-12 Steven Schubiger <stsc@members.fsf.org>
|
||||
|
||||
* FTPServer.pm, FTPTest.pm, HTTPServer.pm, HTTPTest.pm:
|
||||
Remove the magic interpreter line, because it cannot be
|
||||
used fully. Substitute -w with use warnings.
|
||||
|
||||
2008-11-11 Micah Cowan <micah@cowan.name>
|
||||
|
||||
* HTTPServer.pm (handle_auth): Allow testing of
|
||||
|
@ -1,11 +1,10 @@
|
||||
#!/usr/bin/perl -w
|
||||
|
||||
# Part of this code was borrowed from Richard Jones's Net::FTPServer
|
||||
# http://www.annexia.org/freeware/netftpserver
|
||||
|
||||
package FTPServer;
|
||||
|
||||
use strict;
|
||||
use warnings;
|
||||
|
||||
use Cwd;
|
||||
use Socket;
|
||||
|
@ -1,8 +1,7 @@
|
||||
#!/usr/bin/perl -w
|
||||
|
||||
package FTPTest;
|
||||
|
||||
use strict;
|
||||
use warnings;
|
||||
|
||||
use FTPServer;
|
||||
use WgetTest;
|
||||
|
@ -1,8 +1,7 @@
|
||||
#!/usr/bin/perl -w
|
||||
|
||||
package HTTPServer;
|
||||
|
||||
use strict;
|
||||
use warnings;
|
||||
|
||||
use HTTP::Daemon;
|
||||
use HTTP::Status;
|
||||
|
@ -1,8 +1,7 @@
|
||||
#!/usr/bin/perl -w
|
||||
|
||||
package HTTPTest;
|
||||
|
||||
use strict;
|
||||
use warnings;
|
||||
|
||||
use HTTPServer;
|
||||
use WgetTest;
|
||||
|
Loading…
Reference in New Issue
Block a user