$include_dir="/home/hyper-archives/boost-commit/include"; include("$include_dir/msg-header.inc") ?>
Subject: [Boost-commit] svn:boost r57634 - in branches/release: boost/system libs/system libs/system/src
From: bdawes_at_[hidden]
Date: 2009-11-13 09:37:33
Author: bemandawes
Date: 2009-11-13 09:37:32 EST (Fri, 13 Nov 2009)
New Revision: 57634
URL: http://svn.boost.org/trac/boost/changeset/57634
Log:
System: merge trunk
Properties modified: 
   branches/release/boost/system/   (props changed)
   branches/release/libs/system/   (props changed)
Text files modified: 
   branches/release/boost/system/error_code.hpp    |     2 +-                                      
   branches/release/libs/system/src/error_code.cpp |     2 +-                                      
   2 files changed, 2 insertions(+), 2 deletions(-)
Modified: branches/release/boost/system/error_code.hpp
==============================================================================
--- branches/release/boost/system/error_code.hpp	(original)
+++ branches/release/boost/system/error_code.hpp	2009-11-13 09:37:32 EST (Fri, 13 Nov 2009)
@@ -129,7 +129,7 @@
         too_many_files_open_in_system = ENFILE,
         too_many_files_open = EMFILE,
         too_many_links = EMLINK,
-        too_many_synbolic_link_levels = ELOOP,
+        too_many_symbolic_link_levels = ELOOP,
         value_too_large = EOVERFLOW,
         wrong_protocol_type = EPROTOTYPE
       };
Modified: branches/release/libs/system/src/error_code.cpp
==============================================================================
--- branches/release/libs/system/src/error_code.cpp	(original)
+++ branches/release/libs/system/src/error_code.cpp	2009-11-13 09:37:32 EST (Fri, 13 Nov 2009)
@@ -193,7 +193,7 @@
     case EIO: return make_error_condition( io_error );
     case EISCONN: return make_error_condition( already_connected );
     case EISDIR: return make_error_condition( is_a_directory );
-    case ELOOP: return make_error_condition( too_many_synbolic_link_levels );
+    case ELOOP: return make_error_condition( too_many_symbolic_link_levels );
     case EMFILE: return make_error_condition( too_many_files_open );
     case EMLINK: return make_error_condition( too_many_links );
     case EMSGSIZE: return make_error_condition( message_size );