From 647ba96870762183485a8667a69b700cc38822f3 Mon Sep 17 00:00:00 2001 From: ms Date: Mon, 18 Sep 2006 19:28:58 +0000 Subject: [PATCH] Nochn Fix fuer die Passwoerter. git-svn-id: http://svn.ipfire.org/svn/ipfire/trunk@284 ea5c0bd1-69bd-2848-81d8-4f18e57aeed8 --- html/cgi-bin/changepw.cgi | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/html/cgi-bin/changepw.cgi b/html/cgi-bin/changepw.cgi index af9719d10..e5595e158 100644 --- a/html/cgi-bin/changepw.cgi +++ b/html/cgi-bin/changepw.cgi @@ -40,7 +40,7 @@ if ($cgiparams{'ACTION_ADMIN'} eq $Lang::tr{'save'}) } elsif (length($password1) >= 6) { - system('/usr/bin/htpasswd', '-m', '-b', "${General::swroot}/auth/users", 'admin', "${password1}"); + system('/usr/sbin/htpasswd', '-m', '-b', "${General::swroot}/auth/users", 'admin', "${password1}"); &General::log($Lang::tr{'admin user password has been changed'}); } else { @@ -61,7 +61,7 @@ if ($cgiparams{'ACTION_DIAL'} eq $Lang::tr{'save'}) } elsif (length($password1) >= 6) { - system('/usr/bin/htpasswd', '-m', '-b', "${General::swroot}/auth/users", 'dial', "${password1}"); + system('/usr/sbin/htpasswd', '-m', '-b', "${General::swroot}/auth/users", 'dial', "${password1}"); &General::log($Lang::tr{'dial user password has been changed'}); } else {