ensure consistent indentation

master
Zaahir Moolla 2014-07-04 18:59:22 -04:00
parent 39fae8a17c
commit 64122adb09
1 changed files with 3 additions and 3 deletions

View File

@ -22,10 +22,10 @@ attribution github => [ 'https://github.com/UnGround', 'Charlie Belmer' ],
handle remainder => sub {
# Ensure rand is seeded for each process
srand();
srand();
my $address = join(':', map {sprintf '%0.2X', rand(255)}(1..6));
my $text_response = "Here's a random MAC address: $address";
my $html_response = "<i>Here's a random MAC address: </i>$address";
return $text_response, html => $html_response;