summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorMoritz Warning <moritzwarning@web.de>2021-03-05 20:14:15 +0100
committerMoritz Warning <moritzwarning@web.de>2021-03-05 20:14:15 +0100
commit30767f5b5efadb036bdf09fb52d71d5df750932f (patch)
treede12ae0e6ae1cbc78643a7e5c412c44dd1e97721
parent13f9c89ced6ffaeb1faf485152e27e1f40d234cd (diff)
downloadvSomeIP-30767f5b5efadb036bdf09fb52d71d5df750932f.tar.gz
fix typo in error message
-rw-r--r--implementation/endpoints/src/client_endpoint_impl.cpp2
-rw-r--r--implementation/endpoints/src/server_endpoint_impl.cpp2
2 files changed, 2 insertions, 2 deletions
diff --git a/implementation/endpoints/src/client_endpoint_impl.cpp b/implementation/endpoints/src/client_endpoint_impl.cpp
index 434ed14..9b31cc1 100644
--- a/implementation/endpoints/src/client_endpoint_impl.cpp
+++ b/implementation/endpoints/src/client_endpoint_impl.cpp
@@ -612,7 +612,7 @@ typename endpoint_impl<Protocol>::cms_ret_e client_endpoint_impl<Protocol>::chec
return endpoint_impl<Protocol>::cms_ret_e::MSG_WAS_SPLIT;
}
}
- VSOMEIP_ERROR << "cei::check_message_size: Dropping to big message ("
+ VSOMEIP_ERROR << "cei::check_message_size: Dropping too big message ("
<< std::dec << _size << " Bytes). Maximum allowed message size is: "
<< endpoint_impl<Protocol>::max_message_size_ << " Bytes.";
ret = endpoint_impl<Protocol>::cms_ret_e::MSG_TOO_BIG;
diff --git a/implementation/endpoints/src/server_endpoint_impl.cpp b/implementation/endpoints/src/server_endpoint_impl.cpp
index 90aea96..4a46ed8 100644
--- a/implementation/endpoints/src/server_endpoint_impl.cpp
+++ b/implementation/endpoints/src/server_endpoint_impl.cpp
@@ -466,7 +466,7 @@ typename endpoint_impl<Protocol>::cms_ret_e server_endpoint_impl<Protocol>::chec
return endpoint_impl<Protocol>::cms_ret_e::MSG_WAS_SPLIT;
}
}
- VSOMEIP_ERROR << "sei::send_intern: Dropping to big message (" << _size
+ VSOMEIP_ERROR << "sei::send_intern: Dropping too big message (" << _size
<< " Bytes). Maximum allowed message size is: "
<< endpoint_impl<Protocol>::max_message_size_ << " Bytes.";
ret = endpoint_impl<Protocol>::cms_ret_e::MSG_TOO_BIG;