X-Git-Url: http://info.iut-bm.univ-fcomte.fr/pub/gitweb/simgrid.git/blobdiff_plain/110bd0fd1e6ee85b32437b6134ee2f50cf75a716..4eed03f7bb0f25191cc58578087de20d06f8b5d9:/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 de90623090..ae1866e535 100644 --- a/src/gras/Transport/transport_plugin_file.c +++ b/src/gras/Transport/transport_plugin_file.c @@ -108,7 +108,7 @@ gras_socket_client_from_file(const char*path, (*dst)->outgoing?'y':'n', (*dst)->accepting?'y':'n'); /* register socket */ - errcode = gras_dynar_push(_gras_trp_sockets,dst); + errcode = gras_dynar_push(gras_socketset_get(),dst); if (errcode != no_error) { free(*dst); *dst = NULL; @@ -159,7 +159,7 @@ gras_socket_server_from_file(const char*path, (*dst)->accepting?'y':'n'); /* register socket */ - errcode = gras_dynar_push(_gras_trp_sockets,dst); + errcode = gras_dynar_push(gras_socketset_get(),dst); if (errcode != no_error) { free(*dst); *dst = NULL;