From f52a24bc2e0383984b2821b1ee5c0f5b9a0d39c0 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Thomas=20Lang=C3=A5s?= Date: Thu, 7 Mar 2002 20:04:24 +0000 Subject: [PATCH] =?UTF-8?q?Fikset=20en=20seg.=20fault,=20feilen=20l=C3=A5?= =?UTF-8?q?=20i=20is=5Fpassword=5Fset-rutinen?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit --- mysql-useradm.c | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/mysql-useradm.c b/mysql-useradm.c index a57888c..aba767c 100644 --- a/mysql-useradm.c +++ b/mysql-useradm.c @@ -1,5 +1,5 @@ /* - * @(#) $Header: /tmp/cvs/mysql-admutils/mysql-useradm.c,v 1.3 2002-03-06 17:05:05 tlan Exp $ + * @(#) $Header: /tmp/cvs/mysql-admutils/mysql-useradm.c,v 1.4 2002-03-07 20:04:24 tlan Exp $ * * mysql-useradm.c * @@ -52,7 +52,7 @@ is_password_set(MYSQL *pmysql, const char *user) return -1; if (rows > 1) return dberror(NULL, "Query for password for user '%s' gave %d results!", - rows); + user, rows); row = mysql_fetch_row(res); return (row[0] && (strlen(row[0]) > 0)); }