From f6ba822d2b23f30af452fd6f4e07f47d7148d8ed Mon Sep 17 00:00:00 2001
From: David Andrs <david.andrs@inl.gov>
Date: Thu, 9 Jun 2011 13:20:47 -0600
Subject: [PATCH] Ghosted solution has to be closed on System::update

---
 src/systems/system.C |    4 ++++
 1 files changed, 4 insertions(+), 0 deletions(-)

diff --git a/src/systems/system.C b/src/systems/system.C
index 35b7906..de7dc6c 100644
--- a/src/systems/system.C
+++ b/src/systems/system.C
@@ -381,7 +381,11 @@ void System::reinit ()
 
 void System::update ()
 {
+#ifdef LIBMESH_ENABLE_GHOSTED
+  solution->close();
+#else
   libmesh_assert(solution->closed());
+#endif
 
   const std::vector<unsigned int>& send_list = _dof_map->get_send_list ();
 
-- 
1.6.5.1

