diff options
author | eldritch horrors <pennae@lix.systems> | 2024-03-04 08:12:15 +0100 |
---|---|---|
committer | eldritch horrors <pennae@lix.systems> | 2024-03-04 08:12:15 +0100 |
commit | 68f148ed45da0a8b827a96611e7825d5d2396454 (patch) | |
tree | b47bbaa1fdb1613cbff4d45970f901f2b08c5f87 /src/libutil/serialise.hh | |
parent | 5dd872363a8fff8d2a1d4ed182c8112221e4dfb1 (diff) |
Merge pull request #9798 from edolstra/remote-store-eof
Print a more helpful message if the daemon crashes
(cherry picked from commit 32706b14a7531c2c21b9f96da083a540a0031ec4)
Change-Id: Ief7c465bca7666e2b7e7c9d1dd0c01c5f9014146
Diffstat (limited to 'src/libutil/serialise.hh')
-rw-r--r-- | src/libutil/serialise.hh | 5 |
1 files changed, 3 insertions, 2 deletions
diff --git a/src/libutil/serialise.hh b/src/libutil/serialise.hh index 333c254ea..d1c791823 100644 --- a/src/libutil/serialise.hh +++ b/src/libutil/serialise.hh @@ -151,12 +151,13 @@ struct FdSource : BufferedSource { int fd; size_t read = 0; + BackedStringView endOfFileError{"unexpected end-of-file"}; FdSource() : fd(-1) { } FdSource(int fd) : fd(fd) { } - FdSource(FdSource&&) = default; + FdSource(FdSource &&) = default; - FdSource& operator=(FdSource && s) + FdSource & operator=(FdSource && s) { fd = s.fd; s.fd = -1; |