summaryrefslogtreecommitdiff
path: root/authfd.c
diff options
context:
space:
mode:
authorDamien Miller <djm@mindrot.org>2011-08-06 06:16:00 +1000
committerDamien Miller <djm@mindrot.org>2011-08-06 06:16:00 +1000
commit6ea5e44871314a980e7506282450b58fc78ae9aa (patch)
tree249e9ba4d52a2e9072095dc89e7f65a255a4eb24 /authfd.c
parent7741ce8bd2d0aef8aae0c2406eb51b617f1165fe (diff)
- tedu@cvs.openbsd.org 2011/07/06 18:09:21
[authfd.c] bzero the agent address. the kernel was for a while very cranky about these things. evne though that's fixed, always good to initialize memory. ok deraadt djm
Diffstat (limited to 'authfd.c')
-rw-r--r--authfd.c3
1 files changed, 2 insertions, 1 deletions
diff --git a/authfd.c b/authfd.c
index c942a9110..f037e838b 100644
--- a/authfd.c
+++ b/authfd.c
@@ -1,4 +1,4 @@
1/* $OpenBSD: authfd.c,v 1.85 2011/05/15 08:09:01 djm Exp $ */ 1/* $OpenBSD: authfd.c,v 1.86 2011/07/06 18:09:21 tedu Exp $ */
2/* 2/*
3 * Author: Tatu Ylonen <ylo@cs.hut.fi> 3 * Author: Tatu Ylonen <ylo@cs.hut.fi>
4 * Copyright (c) 1995 Tatu Ylonen <ylo@cs.hut.fi>, Espoo, Finland 4 * Copyright (c) 1995 Tatu Ylonen <ylo@cs.hut.fi>, Espoo, Finland
@@ -102,6 +102,7 @@ ssh_get_authentication_socket(void)
102 if (!authsocket) 102 if (!authsocket)
103 return -1; 103 return -1;
104 104
105 bzero(&sunaddr, sizeof(sunaddr));
105 sunaddr.sun_family = AF_UNIX; 106 sunaddr.sun_family = AF_UNIX;
106 strlcpy(sunaddr.sun_path, authsocket, sizeof(sunaddr.sun_path)); 107 strlcpy(sunaddr.sun_path, authsocket, sizeof(sunaddr.sun_path));
107 108