Skip Menu |

Preferred bug tracker

Please visit the preferred bug tracker to report your issue.

This queue is for tickets about the Daemon-Control CPAN distribution.

Report information
The Basics
Id: 99891
Status: new
Priority: 0/
Queue: Daemon-Control

People
Owner: Nobody in particular
Requestors: SREZIC [...] cpan.org
Cc:
AdminCc:

Bug Information
Severity: (no value)
Broken in: 0.001006
Fixed in: (no value)



Subject: pid_running: redundant $pid argument
The pid_running() function has currently the following lines: my ( $self, $pid ) = @_; $pid ||= $self->read_pid; Unfortunately $pid is nowhere used in this function. Instead $self->pid is used here. So either $pid is redundant, and the argument may be removed (and all callers fixed), or $self->pid should be replaced by $pid here.