X-Git-Url: http://bilbo.iut-bm.univ-fcomte.fr/pub/gitweb/simgrid.git/blobdiff_plain/9fb9a973ff6b7ed01c40a1abb7f54feaf0823d4f..063c63642a29000a011c0d6176d30eb62a4e0dca:/src/gras/Transport/transport_plugin_file.c diff --git a/src/gras/Transport/transport_plugin_file.c b/src/gras/Transport/transport_plugin_file.c index c8a13d0dd2..ca8aadfd0e 100644 --- a/src/gras/Transport/transport_plugin_file.c +++ b/src/gras/Transport/transport_plugin_file.c @@ -98,7 +98,7 @@ gras_socket_t gras_socket_client_from_file(const char *path) path, res->sd, res->incoming ? 'y' : 'n', - res->outgoing ? 'y' : 'n', res->accepting ? 'y' : 'n'); + res->outgoing ? 'y' : 'n', res->is_master ? 'y' : 'n'); xbt_dynar_push(((gras_trp_procdata_t) gras_libdata_by_id(gras_trp_libdata_id))->sockets, &res); @@ -138,7 +138,7 @@ gras_socket_t gras_socket_server_from_file(const char *path) DEBUG4("sd=%d in=%c out=%c accept=%c", res->sd, res->incoming ? 'y' : 'n', - res->outgoing ? 'y' : 'n', res->accepting ? 'y' : 'n'); + res->outgoing ? 'y' : 'n', res->is_master ? 'y' : 'n'); xbt_dynar_push(((gras_trp_procdata_t) gras_libdata_by_id(gras_trp_libdata_id))->sockets, &res);