Skip to content

Commit

Permalink
Typo
Browse files Browse the repository at this point in the history
  • Loading branch information
edolstra committed Aug 25, 2021
1 parent 4eb2f62 commit 9842bf4
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion src/libutil/util.cc
Original file line number Diff line number Diff line change
Expand Up @@ -1762,7 +1762,7 @@ void connect(int fd, const std::string & path)
});
int status = pid.wait();
if (status != 0)
throw Error("cannot connect to socket ar '%s'", path);
throw Error("cannot connect to socket at '%s'", path);
} else {
strcpy(addr.sun_path, path.c_str());
if (connect(fd, (struct sockaddr *) &addr, sizeof(addr)) == -1)
Expand Down

0 comments on commit 9842bf4

Please sign in to comment.