From: velho Date: Wed, 25 Jul 2007 15:27:39 +0000 (+0000) Subject: Corrected error message. X-Git-Tag: v3.3~1468 X-Git-Url: http://info.iut-bm.univ-fcomte.fr/pub/gitweb/simgrid.git/commitdiff_plain/11288d14ad648c0aa7620f08ee8058a762f8c640 Corrected error message. git-svn-id: svn+ssh://scm.gforge.inria.fr/svn/simgrid/simgrid/trunk@3892 48e7efb5-ca39-0410-a469-dd3cf9ba447f --- diff --git a/src/simix/smx_config.c b/src/simix/smx_config.c index b1ab29766d..aab10e1b8d 100644 --- a/src/simix/smx_config.c +++ b/src/simix/smx_config.c @@ -28,8 +28,9 @@ static void _simix_cfg_cb__workstation_model(const char *name, int pos) !strcmp(val, "KCCFLN05") || !strcmp(val, "KCCFLN05_proportional") || !strcmp(val, "KCCFLN05_Vegas") || - !strcmp(val, "KCCFLN05_Reno"), - "Unknown workstation model: %s (choices are: 'CLM03', 'KCCFLN05', 'KCCFLN05_proportional', 'KCCFLN05_Vegas' and 'KCCFLN05_Reno'",val); + !strcmp(val, "KCCFLN05_Reno") || + !strcmp(val, "GTNETS"), + "Unknown workstation model: %s (choices are: 'CLM03', 'KCCFLN05', 'KCCFLN05_proportional', 'KCCFLN05_Vegas', 'KCCFLN05_Reno' and 'GTNETS'",val); } /* create the config set and register what should be */