Skip to content
GitLab
Explore
Sign in
Register
Primary navigation
Search or go to…
Project
L
liblwp-protocol-http-socketunix-perl
Manage
Activity
Members
Labels
Code
Merge requests
Repository
Branches
Commits
Tags
Repository graph
Compare revisions
Snippets
Build
Pipelines
Jobs
Pipeline schedules
Artifacts
Deploy
Releases
Container registry
Model registry
Operate
Environments
Analyze
Value stream analytics
Contributor analytics
CI/CD analytics
Repository analytics
Model experiments
Help
Help
Support
GitLab documentation
Compare GitLab plans
Community forum
Contribute to GitLab
Provide feedback
Keyboard shortcuts
?
Snippets
Groups
Projects
Show more breadcrumbs
Debian Perl Group
modules
packages
liblwp-protocol-http-socketunix-perl
Commits
d4f38983
Commit
d4f38983
authored
1 year ago
by
Damyan Ivanov
Browse files
Options
Downloads
Patches
Plain Diff
patch in explicit loading of LWP::Debug
Closes: #1054654
parent
2c263f28
No related branches found
No related tags found
No related merge requests found
Changes
2
Hide whitespace changes
Inline
Side-by-side
Showing
2 changed files
debian/patches/series
+1
-0
1 addition, 0 deletions
debian/patches/series
debian/patches/use-LWP::Debug.patch
+21
-0
21 additions, 0 deletions
debian/patches/use-LWP::Debug.patch
with
22 additions
and
0 deletions
debian/patches/series
0 → 100644
+
1
−
0
View file @
d4f38983
use-LWP::Debug.patch
This diff is collapsed.
Click to expand it.
debian/patches/use-LWP::Debug.patch
0 → 100644
+
21
−
0
View file @
d4f38983
Description: explicit loading of LWP::Debug
The request method calls LWP::Debug::trace, but LWP::Debug
is not loaded. This worked before because some other module
had loaded LWP::Debug, but this is no longer the case.
.
This patch corrects that by adding an explicit 'use LWP::Debug ()'
Author: Damyan Ivanov <dmn@debian.org>
Bug-Debian: https://bugs.debian.org/1054654
Forwarded: https://rt.cpan.org/Ticket/Display.html?id=150557
Bug: https://rt.cpan.org/Ticket/Display.html?id=150557
--- a/lib/LWP/Protocol/http/SocketUnix.pm
+++ b/lib/LWP/Protocol/http/SocketUnix.pm
@@ -4,6 +4,7 @@
use strict;
use warnings;
use vars qw( @ISA $VERSION );
use IO::Socket;
+use LWP::Debug ();
use LWP::Protocol::http;
@ISA = qw( LWP::Protocol::http );
This diff is collapsed.
Click to expand it.
Preview
0%
Loading
Try again
or
attach a new file
.
Cancel
You are about to add
0
people
to the discussion. Proceed with caution.
Finish editing this message first!
Save comment
Cancel
Please
register
or
sign in
to comment