diff options
author | 2004-04-22 01:54:00 +0000 | |
---|---|---|
committer | 2004-04-22 01:54:00 +0000 | |
commit | 8bc0a23ff30b5f1c3fa904bd21cc16629984cf9e (patch) | |
tree | c6515002d3120ef7156bd26bb1933141b74e9817 /net-www/apache | |
parent | phear the hppa (diff) | |
download | gentoo-2-8bc0a23ff30b5f1c3fa904bd21cc16629984cf9e.tar.gz gentoo-2-8bc0a23ff30b5f1c3fa904bd21cc16629984cf9e.tar.bz2 gentoo-2-8bc0a23ff30b5f1c3fa904bd21cc16629984cf9e.zip |
Fixed error message in apachesplitlogfiles. Closes #48499.
Diffstat (limited to 'net-www/apache')
-rw-r--r-- | net-www/apache/ChangeLog | 6 | ||||
-rw-r--r-- | net-www/apache/files/apachesplitlogfile | 4 |
2 files changed, 7 insertions, 3 deletions
diff --git a/net-www/apache/ChangeLog b/net-www/apache/ChangeLog index b2bd46fdb791..ca7bbb2b23ef 100644 --- a/net-www/apache/ChangeLog +++ b/net-www/apache/ChangeLog @@ -1,6 +1,10 @@ # ChangeLog for net-www/apache # Copyright 2002-2004 Gentoo Technologies, Inc.; Distributed under the GPL v2 -# $Header: /var/cvsroot/gentoo-x86/net-www/apache/ChangeLog,v 1.130 2004/04/20 19:04:03 zul Exp $ +# $Header: /var/cvsroot/gentoo-x86/net-www/apache/ChangeLog,v 1.131 2004/04/22 01:54:00 zul Exp $ + + 22 Apr 2004; Chuck Short <zul@gentoo.org> files/apachesplitlogfile: + Fixed error message in apachesplitlogfiles to make it more understandable. + Closes #48499. 20 Apr 2004; Chuck Short <zul@gentoo.org> files/common/config.layout: Fix another typo. diff --git a/net-www/apache/files/apachesplitlogfile b/net-www/apache/files/apachesplitlogfile index 12762ddb268d..6b59bef05111 100644 --- a/net-www/apache/files/apachesplitlogfile +++ b/net-www/apache/files/apachesplitlogfile @@ -1,5 +1,5 @@ #!/usr/bin/perl -# $Header: /var/cvsroot/gentoo-x86/net-www/apache/files/apachesplitlogfile,v 1.2 2002/05/04 23:23:01 woodchip Exp $ +# $Header: /var/cvsroot/gentoo-x86/net-www/apache/files/apachesplitlogfile,v 1.3 2004/04/22 01:54:00 zul Exp $ ## ==================================================================== ## The Apache Software License, Version 1.1 @@ -107,7 +107,7 @@ while (<STDIN>) { die "File $filename is a symlink, writing too dangerous, dying!\n"; } open LOGFILE, ">>$filename" - or die ("Can't open $logs/$filename"); + or die ("Can't open $filename"); # # Strip off the first token (which may be null in the # case of the default server), and write the edited |