diff options
-rw-r--r-- | sitesummary-collector.cgi | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/sitesummary-collector.cgi b/sitesummary-collector.cgi index 0ae7fd7..6e4e676 100644 --- a/sitesummary-collector.cgi +++ b/sitesummary-collector.cgi @@ -91,7 +91,7 @@ exit 0; sub extract_unique_id { my $eth0mac; - open(IFCONFIG, "system/ifconfig-a") || die; + open(IFCONFIG, "system/ifconfig-a") || die "Unable to read ifconfig-a"; while (<IFCONFIG>) { chomp; $eth0mac = $1 if (m/eth0\s+Link encap:Ethernet HWaddr (\S+)/); |