From e062aaff2f1c60233f4bfc8d7898fd89c250ce56 Mon Sep 17 00:00:00 2001 From: Beman Dawes Date: Sun, 9 Sep 2007 17:48:17 +0000 Subject: [PATCH] Posix and Linux fixes [SVN r39174] --- test/error_code_test.cpp | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/test/error_code_test.cpp b/test/error_code_test.cpp index 35149f4..b020ef0 100644 --- a/test/error_code_test.cpp +++ b/test/error_code_test.cpp @@ -197,7 +197,7 @@ int test_main( int, char ** ) BOOST_CHECK( ec == Linux::dot_dot_error ); BOOST_CHECK( ec == error_code( EDOTDOT, system_category ) ); BOOST_CHECK( ec == error_code( Linux::dot_dot_error, system_category ) ); - BOOST_CHECK( ec.default_error_condition().category() == posix_category ); + BOOST_CHECK( ec.default_error_condition().category() == system_category ); # endif