aboutsummaryrefslogtreecommitdiff
path: root/lib/easy.c
diff options
context:
space:
mode:
authorGunter Knauf <gk@gknw.de>2007-07-11 21:34:22 +0000
committerGunter Knauf <gk@gknw.de>2007-07-11 21:34:22 +0000
commita4f36558fc1bb9c9f7f0b2f977a2e407905ccd88 (patch)
treecaf5bc40c1cbd8edcddbd6766ee580198009887b /lib/easy.c
parent5e1cd407a3238cbee8431ade5c82d4fcdbfe507a (diff)
added NetWare-own file to provide some init functions (for now only CLIB);
added call to netware_init() in curl_global_init() to make sure it gets called before any library functions get used.
Diffstat (limited to 'lib/easy.c')
-rw-r--r--lib/easy.c6
1 files changed, 6 insertions, 0 deletions
diff --git a/lib/easy.c b/lib/easy.c
index 5c8d6bb3e..2122f9b28 100644
--- a/lib/easy.c
+++ b/lib/easy.c
@@ -241,6 +241,12 @@ CURLcode curl_global_init(long flags)
}
#endif
+#ifdef NETWARE
+ if(netware_init()) {
+ DEBUGF(fprintf(stderr, "Warning: LONG namespace not available\n"));
+ }
+#endif
+
#ifdef USE_LIBIDN
idna_init();
#endif