[LON-CAPA-cvs] cvs: loncom / lonhttpd
albertel
lon-capa-cvs@mail.lon-capa.org
Mon, 14 Feb 2005 00:18:04 -0000
albertel Sun Feb 13 19:18:04 2005 EDT
Modified files:
/loncom lonhttpd
Log:
- well that solves the mystery of wy lonhttpd refused to start somtimes
Index: loncom/lonhttpd
diff -u loncom/lonhttpd:1.9 loncom/lonhttpd:1.10
--- loncom/lonhttpd:1.9 Wed Jul 30 11:28:56 2003
+++ loncom/lonhttpd Sun Feb 13 19:18:03 2005
@@ -1,5 +1,5 @@
#!/usr/bin/perl
-# $Id: lonhttpd,v 1.9 2003/07/30 15:28:56 www Exp $
+# $Id: lonhttpd,v 1.10 2005/02/14 00:18:03 albertel Exp $
$VERSION = "1.3.2 (Demonic/Linux/LON-CAPA Derivative $Revison$)";
@@ -61,7 +61,7 @@
if (-e $pidfile) {
open(LFH,"$pidfile");
- my $pide=<$LFH>;
+ my $pide=<LFH>;
chomp($pide);
close(LFH);
if (kill 0 => $pide) { die "already running"; }