remove ref to nrmicro

add note
This commit is contained in:
Rick V 2019-02-01 23:51:20 -06:00
parent 59c6184233
commit ad1179a333
No known key found for this signature in database
GPG Key ID: C0EDC8723FDC3465
2 changed files with 5 additions and 4 deletions

View File

@ -25,8 +25,7 @@
*
* here, it is used to encode the compressed zlib-stream of the
* Netscape root certificate trust store on behalf of the lokinet
* for NT bootstrap scripts and the (cross-platform) libuNR, a tiny
* HTTPS client library.
* for NT bootstrap stubs.
*/
#include <stdio.h>

View File

@ -7,7 +7,7 @@
#include <getopt.h>
#include <signal.h>
#if !defined(_WIN32) && !defined(__NetBSD__) && !defined(__OpenBSD__)
#if !defined(_WIN32) && !defined(__OpenBSD__)
#include <wordexp.h>
#endif
@ -65,7 +65,9 @@ handle_signal_win32(DWORD fdwCtrlType)
std::string
resolvePath(std::string conffname)
{
#if !defined(_WIN32) && !defined(__NetBSD__) && !defined(__OpenBSD__)
// implemented in netbsd, removed downstream for security reasons
// even though it is defined by POSIX.1-2001+
#if !defined(_WIN32) && !defined(__OpenBSD__)
wordexp_t exp_result;
wordexp(conffname.c_str(), &exp_result, 0);
char *resolvedPath = realpath(exp_result.we_wordv[0], NULL);