Use File::Temp instead of POSIX for tempnam

Issue #1 new
Former user created an issue

POSIX::tempnam is removed from like perl 5.22 and thus throws an error. Can be fixed by replacing

use POSIX qw(tmpnam);

with

use File::Temp qw(tmpnam);

in Uplug.pm and Uplug/IO/Any.pm.

Comments (0)

  1. Log in to comment