Skip to content
Snippets Groups Projects
Commit 2c91b75b authored by Christophe Geuzaine's avatar Christophe Geuzaine
Browse files

*** empty log message ***

parent 0b286f5e
No related branches found
No related tags found
No related merge requests found
...@@ -36,7 +36,7 @@ StringXString MeshOptions_String[] = { ...@@ -36,7 +36,7 @@ StringXString MeshOptions_String[] = {
} ; } ;
StringXString SolverOptions_String[] = { StringXString SolverOptions_String[] = {
{ F|O, "GetDPCommand" , opt_solver_getdp_command , "getdp %s" }, { F|O, "GetDPCommand" , opt_solver_getdp_command , "getdp" },
{ 0, NULL , NULL , NULL } { 0, NULL , NULL , NULL }
} ; } ;
......
// $Id: Solvers.cpp,v 1.3 2001-05-04 13:39:34 geuzaine Exp $ // $Id: Solvers.cpp,v 1.4 2001-05-04 13:54:03 geuzaine Exp $
#include "Gmsh.h" #include "Gmsh.h"
...@@ -49,7 +49,7 @@ int GetDP(char *args){ ...@@ -49,7 +49,7 @@ int GetDP(char *args){
GET_PATH(sockname); GET_PATH(sockname);
strcat(sockname, ".gmshsock"); strcat(sockname, ".gmshsock");
sprintf(progname, GetDP_Info.command, args); sprintf(progname, "%s %s", GetDP_Info.command, args);
sock = Socket_StartProgram(progname, sockname); sock = Socket_StartProgram(progname, sockname);
if(sock<0){ if(sock<0){
Msg(GERROR, "Could not execute '%s'", progname); Msg(GERROR, "Could not execute '%s'", progname);
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Please register or to comment