From d9e9331422aad7cc5434d523b94a9ec70101a541 Mon Sep 17 00:00:00 2001 From: mfranz Date: Sun, 1 Feb 2009 23:44:36 +0000 Subject: [PATCH] do_save: s/reading/writing/ in the error message --- src/Main/fg_commands.cxx | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/Main/fg_commands.cxx b/src/Main/fg_commands.cxx index cf5efb8a5..58546014d 100644 --- a/src/Main/fg_commands.cxx +++ b/src/Main/fg_commands.cxx @@ -357,7 +357,7 @@ do_save (const SGPropertyNode * arg) file += ".sav"; if (!fgValidatePath(file.c_str(), false)) { - SG_LOG(SG_IO, SG_ALERT, "save: reading '" << file << "' denied " + SG_LOG(SG_IO, SG_ALERT, "save: writing '" << file << "' denied " "(unauthorized access)"); return false; }