From 53e703ee23931cc02f5e4a8b86b5691e95bebdcd Mon Sep 17 00:00:00 2001 From: Curtis McEnroe Date: Fri, 23 Feb 2018 16:15:12 -0500 Subject: Don't bother checking result of close(2) in dtch --- bin/dtch.c | 6 ++---- 1 file changed, 2 insertions(+), 4 deletions(-) (limited to 'bin/dtch.c') diff --git a/bin/dtch.c b/bin/dtch.c index 41659243..23407386 100644 --- a/bin/dtch.c +++ b/bin/dtch.c @@ -124,8 +124,7 @@ static int dtch(int argc, char *argv[]) { error = mkdirat(home, ".dtch", 0700); if (error && errno != EEXIST) err(EX_CANTCREAT, "%s/.dtch", user->pw_dir); - error = close(home); - if (error) err(EX_IOERR, "%s", user->pw_dir); + close(home); int server = socket(PF_LOCAL, SOCK_STREAM, 0); if (server < 0) err(EX_OSERR, "socket"); @@ -163,8 +162,7 @@ static int dtch(int argc, char *argv[]) { size = recv(client, &z, sizeof(z), 0); if (size < 0) warn("recv(%d)", client); - error = close(client); - if (error) warn("close(%d)", client); + close(client); int status; pid_t dead = waitpid(pid, &status, WNOHANG); -- cgit 1.4.1