From 09c5ad5d72abd1c28446c6e4bc26ac7c98f6c366 Mon Sep 17 00:00:00 2001 From: Christophe Geuzaine <cgeuzaine@ulg.ac.be> Date: Wed, 4 Jan 2017 14:36:39 +0000 Subject: [PATCH] fix reading of period section in MSH3 --- Geo/GModelIO_MSH.cpp | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/Geo/GModelIO_MSH.cpp b/Geo/GModelIO_MSH.cpp index e79515df1c..943575c28f 100644 --- a/Geo/GModelIO_MSH.cpp +++ b/Geo/GModelIO_MSH.cpp @@ -430,7 +430,7 @@ int GModel::readMSH(const std::string &name) } // $Periodical section - else if(!strncmp(&str[1], "Periodical", 10)) { + else if(!strncmp(&str[1], "Periodic", 8)) { readMSHPeriodicNodes(fp, this); } -- GitLab