Fix missing symbol program_invocation_short_name.

This fixes runtime when logging is enabled.

Sponsored by:	EMC / Isilon Storage Division
This commit is contained in:
Bryan Drewery 2016-03-04 22:37:25 +00:00
parent 49e6689098
commit 1465ae5d7f
Notes: svn2git 2020-12-20 02:59:44 +00:00
svn path=/head/; revision=296401

View File

@ -40,6 +40,9 @@
#define FASYNC 0
#include <libgen.h>
#endif
#ifdef __FreeBSD__
#include <libgen.h>
#endif
#include <unistd.h>
#include <errno.h>
#include <stdio.h>
@ -217,7 +220,7 @@ volatile static int init_status = 0; /* 0: idle, 1:during, 2:ready */
/* glibc provides these symbols - for Solaris builds we fake them
* until _init is called, at which point we quiz libdl.. */
#ifdef SOLARIS_BUILD
#if defined(SOLARIS_BUILD) || defined(__FreeBSD__)
char *program_invocation_name = "[progname]", *program_invocation_short_name =
"[short_progname]";
#else
@ -2583,6 +2586,10 @@ void __sdp_init(void)
program_invocation_short_name = basename(args_info.dla_argv[0]);
}
#endif
#ifdef __FreeBSD__
program_invocation_short_name = (char *)getprogname();
program_invocation_name = program_invocation_short_name;
#endif
if (getenv("SIMPLE_LIBSDP") != NULL) {
simple_sdp_library = 1;