From 7971b1bc93dc61d3ab7314ce70dbdb74a2f65829 Mon Sep 17 00:00:00 2001 From: Koen Hillewaert <koen.hillewaert@cenaero.be> Date: Thu, 25 Aug 2016 13:21:43 +0000 Subject: [PATCH] filter the old Argo convention for the periodic section --- Geo/GModelIO_MSH2.cpp | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/Geo/GModelIO_MSH2.cpp b/Geo/GModelIO_MSH2.cpp index 123c6d8d5f..2a65217509 100644 --- a/Geo/GModelIO_MSH2.cpp +++ b/Geo/GModelIO_MSH2.cpp @@ -707,7 +707,7 @@ int GModel::_readMSH2(const std::string &name) if(feof(fp)) break; - if(!strncmp(&str[1], "Periodic",8) && strlen(&str[1]) == 8) { + if(!strncmp(&str[1], "Periodic",8) && strncmp(&str[1],"PeriodicNodes",13)) { readMSHPeriodicNodes(fp,this); break; } -- GitLab