mirror of
https://git.FreeBSD.org/ports.git
synced 2024-11-01 22:05:08 +00:00
8ef08b59c5
Submitted by: Takuya TSUMURA <tsumura@jwri.osaka-u.ac.jp>
20 lines
452 B
Plaintext
20 lines
452 B
Plaintext
--- w3http.pm.orig Fri May 28 23:35:19 1999
|
|
+++ w3http.pm Sat Jan 8 03:35:34 2000
|
|
@@ -133,13 +133,13 @@
|
|
use URI::URL;
|
|
|
|
# Suplementary libwww-perl:
|
|
-sub URI::URL::_generic::basename {
|
|
+sub URI::_generic::basename {
|
|
my $self = shift;
|
|
- my @p = $self->path_components;
|
|
+ my @p = $self->path_segments;
|
|
my $old = $p[-1];
|
|
if (@_) {
|
|
splice(@p, -1, 1, shift);
|
|
- $self->path_components(@p)
|
|
+ $self->path_segments(@p);
|
|
}
|
|
$old;
|
|
}
|