summaryrefslogtreecommitdiffstats
path: root/crypto/dso
diff options
context:
space:
mode:
authorUlf Möller <ulf@openssl.org>2005-12-18 20:59:25 +0000
committerUlf Möller <ulf@openssl.org>2005-12-18 20:59:25 +0000
commitc8e1edaae57a41abfd44dccc585e2772f0342a54 (patch)
treef98859c84bb1c92607ccb419be2ff32fe3420b42 /crypto/dso
parent63d3fc91065c32d5cfb366f1e7e413bc607697d6 (diff)
comments
Diffstat (limited to 'crypto/dso')
-rw-r--r--crypto/dso/dso_dlfcn.c6
1 files changed, 3 insertions, 3 deletions
diff --git a/crypto/dso/dso_dlfcn.c b/crypto/dso/dso_dlfcn.c
index 76630d865e..6d6ee758ef 100644
--- a/crypto/dso/dso_dlfcn.c
+++ b/crypto/dso/dso_dlfcn.c
@@ -380,7 +380,7 @@ static char *dlfcn_name_converter(DSO *dso, const char *filename)
}
#ifdef __sgi
-#if 0
+/*
This is a quote from IRIX manual for dladdr(3c):
<dlfcn.h> does not contain a prototype for dladdr or definition of
@@ -392,7 +392,7 @@ This is a quote from IRIX manual for dladdr(3c):
part of the IRIX compatibility guarantee; however, there is no future
intention to change this interface, so on a practical level, the code
below is safe to use on IRIX.
-#endif
+*/
#include <rld_interface.h>
#ifndef _RLD_INTERFACE_DLFCN_H_DLADDR
#define _RLD_INTERFACE_DLFCN_H_DLADDR
@@ -416,7 +416,7 @@ static int dladdr(void *address, Dl_info *dl)
v = _rld_new_interface(_RLD_DLADDR,address,dl);
return (int)v;
}
-#endif
+#endif /* __sgi */
static int dlfcn_pathbyaddr(void *addr,char *path,int sz)
{