You are viewing a plain text version of this content. The canonical link for it is here.
Posted to commits@mesos.apache.org by bm...@apache.org on 2020/04/10 17:48:13 UTC

[mesos] branch master updated: Removed trailing periods from errors in network.hpp.

This is an automated email from the ASF dual-hosted git repository.

bmahler pushed a commit to branch master
in repository https://gitbox.apache.org/repos/asf/mesos.git


The following commit(s) were added to refs/heads/master by this push:
     new 129ce92  Removed trailing periods from errors in network.hpp.
129ce92 is described below

commit 129ce92b8873fa364da81a29a63214fe3791fa3c
Author: Benjamin Mahler <bm...@apache.org>
AuthorDate: Thu Apr 9 19:36:02 2020 -0400

    Removed trailing periods from errors in network.hpp.
---
 3rdparty/libprocess/include/process/address.hpp | 4 ++--
 1 file changed, 2 insertions(+), 2 deletions(-)

diff --git a/3rdparty/libprocess/include/process/address.hpp b/3rdparty/libprocess/include/process/address.hpp
index 4ba8f80..f23e653 100644
--- a/3rdparty/libprocess/include/process/address.hpp
+++ b/3rdparty/libprocess/include/process/address.hpp
@@ -239,7 +239,7 @@ public:
 
     if (_length.isNone()) {
       CHECK(un.sun_path[0] != 0)
-        << "Cannot automatically determine size of abstract socket address.";
+        << "Cannot automatically determine size of abstract socket address";
 
       length = ::strlen(un.sun_path) + offsetof(sockaddr_un, sun_path) + 1;
     } else {
@@ -352,7 +352,7 @@ public:
         // distinguish between e.g. an unnamed socket and an abstract
         // socket whose name is a single null byte.
         if (length.isNone()) {
-          return Error("Need length to create unix address from sockaddr.");
+          return Error("Need length to create unix address from sockaddr");
         }
         return unix::Address((const sockaddr_un&) storage, *length);
 #endif // __WINDOWS__