Bug #20968 incorrect DBUG_ENTER string in mysqld.cc network_init(void) function
Submitted: 11 Jul 2006 11:14 Modified: 30 Aug 2006 19:32
Reporter: Shane Bester (Platinum Quality Contributor) Email Updates:
Status: Closed Impact on me:
None 
Category:MySQL Server: Errors Severity:S3 (Non-critical)
Version:5.0.24 OS:
Assigned to: Iggy Galarza CPU Architecture:Any

[11 Jul 2006 11:14] Shane Bester
Description:
There is an incorrect debug message in function:

static void network_init(void)
{
  struct sockaddr_in	IPaddr;
#ifdef HAVE_SYS_UN_H
  struct sockaddr_un	UNIXaddr;
#endif
  int	arg=1;
  int   ret;
  uint  waited;
  uint  this_wait;
  uint  retry;
  DBUG_ENTER("server_init");
  LINT_INIT(ret);

How to repeat:
read the source of mysqld.cc 5.0-bk.
5.1 and 4.1 seem ok.

Suggested fix:
make it say DBUG_ENTER("network_init");
[3 Aug 2006 20:00] Bugs System
A patch for this bug has been committed. After review, it may
be pushed to the relevant source trees for release in the next
version. You can access the patch from:

  http://lists.mysql.com/commits/10028

ChangeSet@1.2241, 2006-08-03 16:00:15-04:00, iggy@rolltop.ignatz42.dyndns.org +1 -0
  Bug #20968: incorrect DBUG_ENTER string in mysqld.cc network_init(void) function
[30 Aug 2006 19:32] Paul DuBois
Noted in 5.0.25 changelog.