Hide display of MDP socket name behind DEBUG_IO.

This commit is contained in:
Daniel O'Connor 2012-05-21 16:18:09 +09:30
parent dab549a22d
commit 9d07cccf8e

View File

@ -1181,7 +1181,7 @@ int overlay_mdp_client_init()
return WHY("Could not form MDP client socket name");
snprintf(overlay_mdp_client_socket_path,1024,fmt,getpid(),random_value);
overlay_mdp_client_socket_path_len=strlen(overlay_mdp_client_socket_path)+1;
DEBUGF("MDP client socket name='%s'",overlay_mdp_client_socket_path);
if(debug&DEBUG_IO) DEBUGF("MDP client socket name='%s'",overlay_mdp_client_socket_path);
}
bcopy(overlay_mdp_client_socket_path,name.sun_path,
overlay_mdp_client_socket_path_len);