From 09af4ce047855bac8c57ead54721caec9cfa4a79 Mon Sep 17 00:00:00 2001 From: Assar Westerlund Date: Tue, 4 Apr 2000 22:01:32 +0000 Subject: [PATCH] (_resolve_debug): explicitly set to zero. this moves the variable from bss to data and the dynamic linker on MacOS X/Darwin seems unhappy with stuff in the bss segment. git-svn-id: svn://svn.h5l.se/heimdal/trunk/heimdal@8111 ec53bebd-3082-4978-b11e-865c3cabbd6b --- lib/roken/resolve.c | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/lib/roken/resolve.c b/lib/roken/resolve.c index 3898bf967..9e0502802 100644 --- a/lib/roken/resolve.c +++ b/lib/roken/resolve.c @@ -1,5 +1,5 @@ /* - * Copyright (c) 1995, 1996, 1997, 1998, 1999 Kungliga Tekniska Högskolan + * Copyright (c) 1995 - 2000 Kungliga Tekniska Högskolan * (Royal Institute of Technology, Stockholm, Sweden). * All rights reserved. * @@ -64,7 +64,7 @@ static struct stot{ {NULL, 0} }; -int _resolve_debug; +int _resolve_debug = 0; static int string_to_type(const char *name)