summaryrefslogtreecommitdiff
path: root/www/amphetadesk/files/patch-lib::AmphetaDesk::Utilities.pm
diff options
context:
space:
mode:
Diffstat (limited to 'www/amphetadesk/files/patch-lib::AmphetaDesk::Utilities.pm')
-rw-r--r--www/amphetadesk/files/patch-lib::AmphetaDesk::Utilities.pm29
1 files changed, 29 insertions, 0 deletions
diff --git a/www/amphetadesk/files/patch-lib::AmphetaDesk::Utilities.pm b/www/amphetadesk/files/patch-lib::AmphetaDesk::Utilities.pm
new file mode 100644
index 000000000000..efa3380c5d85
--- /dev/null
+++ b/www/amphetadesk/files/patch-lib::AmphetaDesk::Utilities.pm
@@ -0,0 +1,29 @@
+--- lib/AmphetaDesk/Utilities.pm.orig Sun Oct 9 19:45:59 2005
++++ lib/AmphetaDesk/Utilities.pm Sun Oct 9 19:51:44 2005
+@@ -112,7 +112,7 @@
+ $hour = sprintf "%02.0d", $hour;
+
+ # print the entry to our log file.
+- print LOG "[$hour:$min:$sec] $message\n";
++ print LOG "[$hour:$min:$sec] $message\n" if fileno LOG;
+
+ # and save the message in our response log
+ # if the message is also being sent to the gui.
+@@ -127,7 +127,7 @@
+ $os = "MacOS" if $^O =~ /Mac/;
+ $os = "Windows" if $^O =~ /Win/;
+ $os = "Linux" unless defined $os;
+- my $packname = "AmphetaDesk::OS::";
++ my $packname = "AmphetaDesk::AmphetaDesk::OS::";
+ my $funcname = "::gui_note";
+ &{ $packname. $os . $funcname }($message) if $gui;
+ }
+@@ -151,7 +151,7 @@
+ $os = "MacOS" if $^O =~ /Mac/;
+ $os = "Windows" if $^O =~ /Win/;
+ $os = "Linux" unless defined $os;
+- my $packname = "AmphetaDesk::OS::";
++ my $packname = "AmphetaDesk::AmphetaDesk::OS::";
+ my $funcname = "::gui_note";
+ &{ $packname. $os . $funcname }($message);
+ }