diff options
author | guenther | 2015-01-19 21:18:47 +0000 |
---|---|---|
committer | Wynn Wolf Arbor | 2020-05-24 12:33:55 +0200 |
commit | 357dbf911560268d5567e4bbbd4e25bf3cdd05a1 (patch) | |
tree | 2525a05d13c3dd40cfa18764560be34c46c10026 /slowcgi.c | |
parent | 1db88be4600befacab6adc2579291f8c0c000727 (diff) | |
download | slowcgi-357dbf911560268d5567e4bbbd4e25bf3cdd05a1.tar.gz |
The kernel doesn't actually care what a sockaddr's sa_len is on input, so don't waste code setting it
improvment and ok florian@
Diffstat (limited to '')
-rw-r--r-- | slowcgi.c | 8 |
1 files changed, 3 insertions, 5 deletions
@@ -1,4 +1,4 @@ -/* $OpenBSD: slowcgi.c,v 1.42 2015/01/16 06:40:20 deraadt Exp $ */ +/* $OpenBSD: slowcgi.c,v 1.43 2015/01/19 21:18:47 guenther Exp $ */ /* * Copyright (c) 2013 David Gwynne <dlg@openbsd.org> * Copyright (c) 2013 Florian Obser <florian@openbsd.org> @@ -355,7 +355,6 @@ slowcgi_listen(char *path, struct passwd *pw) { struct listener *l = NULL; struct sockaddr_un sun; - size_t len; mode_t old_umask; int fd; @@ -365,10 +364,9 @@ slowcgi_listen(char *path, struct passwd *pw) bzero(&sun, sizeof(sun)); sun.sun_family = AF_UNIX; - len = strlcpy(sun.sun_path, path, sizeof(sun.sun_path)); - if (len >= sizeof(sun.sun_path)) + if (strlcpy(sun.sun_path, path, sizeof(sun.sun_path)) >= + sizeof(sun.sun_path)) lerrx(1, "socket path to long"); - sun.sun_len = len; if (unlink(path) == -1) if (errno != ENOENT) |