diff options
author | Theo de Raadt <deraadt@cvs.openbsd.org> | 2021-01-27 07:21:56 +0000 |
---|---|---|
committer | Theo de Raadt <deraadt@cvs.openbsd.org> | 2021-01-27 07:21:56 +0000 |
commit | 058fa07b32a9294e257b197c7c6be77a43bb6a52 (patch) | |
tree | 4c4002309f164f61922238249c6094887066cd02 /usr.sbin/ldapd | |
parent | 6e9a6c5cd0117b0cecf54fc9e3fe849a80ca3844 (diff) |
these programs (with common ancestry) had a -fno-common problem related
to privsep_procid.
ok mortimer
Diffstat (limited to 'usr.sbin/ldapd')
-rw-r--r-- | usr.sbin/ldapd/ldapd.h | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/usr.sbin/ldapd/ldapd.h b/usr.sbin/ldapd/ldapd.h index 556d447317d..257995e3b56 100644 --- a/usr.sbin/ldapd/ldapd.h +++ b/usr.sbin/ldapd/ldapd.h @@ -1,4 +1,4 @@ -/* $OpenBSD: ldapd.h,v 1.33 2021/01/09 14:51:45 rob Exp $ */ +/* $OpenBSD: ldapd.h,v 1.34 2021/01/27 07:21:54 deraadt Exp $ */ /* * Copyright (c) 2009, 2010 Martin Hedenfalk <martin@bzero.se> @@ -229,7 +229,7 @@ struct conn { struct buffertls buftls; unsigned int s_flags; }; -TAILQ_HEAD(conn_list, conn) conn_list; +extern TAILQ_HEAD(conn_list, conn) conn_list; struct ssl { SPLAY_ENTRY(ssl) ssl_nodes; |