From 8390dd10275eee1ac3333f6bbdf0e4c24d69a67a Mon Sep 17 00:00:00 2001 From: unknown Date: Thu, 22 Aug 2002 02:37:42 +0300 Subject: Fixed a bug in mysqladmin shutdown when checking pid file status. --- client/mysqladmin.c | 13 ++++++------- 1 file changed, 6 insertions(+), 7 deletions(-) (limited to 'client') diff --git a/client/mysqladmin.c b/client/mysqladmin.c index 6ee09a9e848..2840b1f4516 100644 --- a/client/mysqladmin.c +++ b/client/mysqladmin.c @@ -457,19 +457,18 @@ static int execute_commands(MYSQL *mysql,int argc, char **argv) my_bool got_pidfile= 0; time_t last_modified= 0; /* to keep compiler happy */ struct stat pidfile_status; - my_bool check_pidfile_status= 1; + my_bool check_pidfile_status= 0; /* Only wait for pidfile on local connections If pidfile doesn't exist, continue without pid file checking */ - if (mysql->unix_socket) - got_pidfile= !get_pidfile(mysql, pidfile); - - if (got_pidfile && stat(pidfile, &pidfile_status)) - check_pidfile_status= 0; - else + if (mysql->unix_socket && (got_pidfile= !get_pidfile(mysql, pidfile)) && + !stat(pidfile, &pidfile_status)) + { + check_pidfile_status= 1; last_modified= pidfile_status.st_mtime; + } if (mysql_shutdown(mysql)) { -- cgit v1.2.1