Fix spacing in if statement in port_parse_config()

This line in port_parse_config():

    if ( has_used_unix_socket_only_option && ! unix_socket_path) {

should be:

    if (has_used_unix_socket_only_option && !unix_socket_path) {