Loading...
gen/FreeBSD/setprogname.c.patch /dev/null Libc-391.5.22
--- /dev/null
+++ Libc/Libc-391.5.22/gen/FreeBSD/setprogname.c.patch
@@ -0,0 +1,37 @@
+--- setprogname.c.orig	2003-05-20 15:21:02.000000000 -0700
++++ setprogname.c	2005-10-26 00:58:44.000000000 -0700
+@@ -3,6 +3,10 @@
+ 
+ #include <stdlib.h>
+ #include <string.h>
++#include <sys/param.h>
++#include <sys/sysctl.h>
++#include <crt_externs.h>
++#define	__progname	(*_NSGetProgname())
+ 
+ #include "libc_private.h"
+ 
+@@ -10,10 +14,20 @@
+ setprogname(const char *progname)
+ {
+ 	const char *p;
+-
++	char buf[2*MAXCOMLEN+1];
++	int mib[2];
++	
+ 	p = strrchr(progname, '/');
+ 	if (p != NULL)
+-		__progname = p + 1;
++		__progname = (char *)(++p);
+ 	else
+-		__progname = progname;
++		__progname = (char *)(p = progname);
++
++	strlcpy(&buf[0], p, sizeof(buf));
++
++	mib[0] = CTL_KERN;
++	mib[1] = KERN_PROCNAME;
++
++	/* ignore errors as this is not a hard error */
++	sysctl(mib, 2, NULL, NULL, &buf[0], 2*MAXCOMLEN);
+ }