diff options
author | 2004-06-07 15:00:38 +0000 | |
---|---|---|
committer | 2004-06-07 15:00:38 +0000 | |
commit | e0ddfd1bd843ca04b19c5695064e62cc875dbcac (patch) | |
tree | fa581399844405d35be603da4cb2baeea71b6565 | |
parent | remove dud i2o link here, too; (diff) | |
download | wireguard-openbsd-e0ddfd1bd843ca04b19c5695064e62cc875dbcac.tar.xz wireguard-openbsd-e0ddfd1bd843ca04b19c5695064e62cc875dbcac.zip |
debugging notify that dlopen() has finished as it was said when it had started; drahn@ ok
-rw-r--r-- | libexec/ld.so/dlfcn.c | 5 |
1 files changed, 4 insertions, 1 deletions
diff --git a/libexec/ld.so/dlfcn.c b/libexec/ld.so/dlfcn.c index c1bff3e21ab..e798d128fd7 100644 --- a/libexec/ld.so/dlfcn.c +++ b/libexec/ld.so/dlfcn.c @@ -1,4 +1,4 @@ -/* $OpenBSD: dlfcn.c,v 1.36 2004/05/25 18:07:20 mickey Exp $ */ +/* $OpenBSD: dlfcn.c,v 1.37 2004/06/07 15:00:38 mickey Exp $ */ /* * Copyright (c) 1998 Per Fogelstrom, Opsycon AB @@ -116,6 +116,9 @@ dlopen(const char *libname, int flags) _dl_debug_map->r_state = RT_CONSISTENT; (*((void (*)(void))_dl_debug_map->r_brk))(); } + + DL_DEB(("dlopen: %s: done.\n", libname)); + return((void *)object); } |