From: Date: September 12 2006 1:23am Subject: bk commit into 5.0 tree (jimw:1.2262) BUG#18246 List-Archive: http://lists.mysql.com/commits/11733 X-Bug: 18246 Message-Id: <20060911232350.5ACB5A83BD@rama.trainedmonkey.com> Below is the list of changes that have just been committed into a local 5.0 repository of jimw. When jimw does a push these changes will be propagated to the main repository and, within 24 hours after the push, to the public repository. For information on how to access the public repository see http://dev.mysql.com/doc/mysql/en/installing-source-tree.html ChangeSet@stripped, 2006-09-11 16:23:45-07:00, jimw@rama.(none) +1 -0 Bug #18246: compilation error with tcp_wrapper Fix the functions in my_libwrap.c to return the results of the underlying call to libwrap. mysys/my_libwrap.c@stripped, 2006-09-11 16:23:44-07:00, jimw@rama.(none) +2 -2 Make my_hosts_access() and my_eval_client() return their results # This is a BitKeeper patch. What follows are the unified diffs for the # set of deltas contained in the patch. The rest of the patch, the part # that BitKeeper cares about, is below these diffs. # User: jimw # Host: rama.(none) # Root: /home/jimw/my/mysql-5.0-18246 --- 1.2/mysys/my_libwrap.c 2006-09-11 16:23:50 -07:00 +++ 1.3/mysys/my_libwrap.c 2006-09-11 16:23:50 -07:00 @@ -31,12 +31,12 @@ int my_hosts_access(struct request_info *req) { - hosts_access(req); + return hosts_access(req); } char *my_eval_client(struct request_info *req) { - eval_client(req); + return eval_client(req); } #endif /* HAVE_LIBWRAP */