diff options
author | Cédric Krier <cedk@gentoo.org> | 2007-01-03 23:03:21 +0000 |
---|---|---|
committer | Cédric Krier <cedk@gentoo.org> | 2007-01-03 23:03:21 +0000 |
commit | dc28f6c393605395fb0fcf45bc3178c0eb2515f7 (patch) | |
tree | 9974615a384163f1eedf488fdf516f0577a7cc84 /net-analyzer/mrtg | |
parent | Fix rc for bug #159786 (diff) | |
download | gentoo-2-dc28f6c393605395fb0fcf45bc3178c0eb2515f7.tar.gz gentoo-2-dc28f6c393605395fb0fcf45bc3178c0eb2515f7.tar.bz2 gentoo-2-dc28f6c393605395fb0fcf45bc3178c0eb2515f7.zip |
Fix typo
(Portage version: 2.1.1-r2)
Diffstat (limited to 'net-analyzer/mrtg')
-rw-r--r-- | net-analyzer/mrtg/files/mrtg.rc | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/net-analyzer/mrtg/files/mrtg.rc b/net-analyzer/mrtg/files/mrtg.rc index e4c7f16c2ea3..fabc9cadf4c0 100644 --- a/net-analyzer/mrtg/files/mrtg.rc +++ b/net-analyzer/mrtg/files/mrtg.rc @@ -1,7 +1,7 @@ #!/sbin/runscript # Copyright 1999-2005 Gentoo Foundation # Distributed under the terms of the GNU General Public License v2 -# $Header: /var/cvsroot/gentoo-x86/net-analyzer/mrtg/files/mrtg.rc,v 1.5 2007/01/03 22:55:38 cedk Exp $ +# $Header: /var/cvsroot/gentoo-x86/net-analyzer/mrtg/files/mrtg.rc,v 1.6 2007/01/03 23:03:21 cedk Exp $ depend() { need net @@ -23,7 +23,7 @@ checkconfig() { start() { # mrtg will not run if LANG=*utf8 # use grep instead of bash regexp for bug #159786 - [[ "$(echo $LANG|grep -v -e '((^[A-Za-z0-9\_\@\-]+\.)|(^))([uU][tT][fF]-?8)$')" ]] \ + [[ "$(echo $LANG|grep -E '((^[A-Za-z0-9\_\@\-]+\.)|(^))([uU][tT][fF]-?8)$')" ]] \ && LANG='C' checkconfig || return $? |