search for: clearenv

Displaying 19 results from an estimated 19 matches for "clearenv".

Did you mean: cleared
2016 Jun 15
0
[Announce] Samba 4.3.10 Available for Download
...SPNs. * BUG 11721: vfs_fruit: Add an option that allows disabling POSIX rename behaviour. o Alexander Bokovoy <ab at samba.org> * BUG 11936: s3-smbd: Support systemd 230. o Jérémie Courrèges-Anglas <jca at wxcvbn.org> * BUG 11864: Provide fallback code for non-portable clearenv(3). o Günther Deschner <gd at samba.org> * BUG 11864: s3:client:smbspool_krb5_wrapper: fix the non clearenv build. o Robin McCorkell <robin at mccorkell.me.uk> * BUG 11276: Correctly set cli->raw_status for libsmbclient in SMB2 code. o Stefan Metzmacher <metze at samba...
2016 Jun 15
0
[Announce] Samba 4.3.10 Available for Download
...SPNs. * BUG 11721: vfs_fruit: Add an option that allows disabling POSIX rename behaviour. o Alexander Bokovoy <ab at samba.org> * BUG 11936: s3-smbd: Support systemd 230. o Jérémie Courrèges-Anglas <jca at wxcvbn.org> * BUG 11864: Provide fallback code for non-portable clearenv(3). o Günther Deschner <gd at samba.org> * BUG 11864: s3:client:smbspool_krb5_wrapper: fix the non clearenv build. o Robin McCorkell <robin at mccorkell.me.uk> * BUG 11276: Correctly set cli->raw_status for libsmbclient in SMB2 code. o Stefan Metzmacher <metze at samba...
2008 Nov 21
2
[PATCH] drop root privileges on solaris, request for testing
...ov 19 14:31:56 2008 +0000 @@ -461,7 +461,8 @@ AC_CHECK_FUNCS(fcntl flock lockf inet_at setrlimit setproctitle seteuid setreuid setegid setresgid \ strtoull strtoll strtouq strtoq \ setpriority quotactl getmntent kqueue kevent backtrace_symbols \ - walkcontext dirfd clearenv malloc_usable_size clock_gettime) + walkcontext dirfd clearenv malloc_usable_size clock_gettime \ + setppriv) dnl strtoimax and strtoumax are macros in HP-UX, so inttypes.h must be included AC_MSG_CHECKING([for strtoimax]) diff -r 8f41c9f3f392 src/master/Makefile.am --- a/src/mast...
2011 Jul 29
3
[PATCH 1/3] klibc: Add scandir() and alphasort() support.
...* _DIRENT_H */ diff --git a/usr/klibc/Kbuild b/usr/klibc/Kbuild index af40367..40e61da 100644 --- a/usr/klibc/Kbuild +++ b/usr/klibc/Kbuild @@ -42,7 +42,7 @@ klib-y := vsnprintf.o snprintf.o vsprintf.o sprintf.o \ seteuid.o setegid.o \ getenv.o setenv.o putenv.o __put_env.o unsetenv.o \ clearenv.o nullenv.o \ - getopt.o getopt_long.o readdir.o remove.o \ + getopt.o getopt_long.o readdir.o scandir.o remove.o \ syslog.o closelog.o pty.o getpt.o posix_openpt.o isatty.o reboot.o \ time.o utime.o llseek.o nice.o getpriority.o \ qsort.o bsearch.o \ diff --git a/usr/klibc/scandir....
2016 Jan 06
0
[klibc:master] Remove obsolete getpt() function
...static __inline__ int grantpt(int __fd) diff --git a/usr/klibc/Kbuild b/usr/klibc/Kbuild index 7d95e87..5521038 100644 --- a/usr/klibc/Kbuild +++ b/usr/klibc/Kbuild @@ -52,7 +52,7 @@ klib-y += vsnprintf.o snprintf.o vsprintf.o sprintf.o \ getenv.o setenv.o putenv.o __put_env.o unsetenv.o \ clearenv.o nullenv.o \ getopt.o getopt_long.o readdir.o scandir.o alphasort.o remove.o \ - syslog.o closelog.o pty.o getpt.o posix_openpt.o isatty.o reboot.o \ + syslog.o closelog.o pty.o posix_openpt.o isatty.o reboot.o \ time.o utime.o lseek.o nice.o getpriority.o \ qsort.o bsearch.o \...
2016 Jan 27
0
[klibc:master] Make posix_openpt() an inline
...atic __inline__ int grantpt(int __fd) { diff --git a/usr/klibc/Kbuild b/usr/klibc/Kbuild index a0e440d..eba6add 100644 --- a/usr/klibc/Kbuild +++ b/usr/klibc/Kbuild @@ -52,7 +52,7 @@ klib-y += vsnprintf.o snprintf.o vsprintf.o sprintf.o \ getenv.o setenv.o putenv.o __put_env.o unsetenv.o \ clearenv.o nullenv.o \ getopt.o getopt_long.o readdir.o scandir.o alphasort.o remove.o \ - syslog.o closelog.o pty.o posix_openpt.o isatty.o reboot.o \ + syslog.o closelog.o pty.o isatty.o reboot.o \ time.o utime.o lseek.o nice.o getpriority.o \ qsort.o bsearch.o \ lrand48.o jrand48.o mr...
2012 Oct 12
0
dsync ignores ssh-agent
...ans the environment; I tried a naive removal of env_clean() but this breaks basic functions. With this dsync is working very well for offline mail -- combined with alpine and a local exim for the outbound queue :) Thanks -- Mark Breakpoint 2, env_clean () at env-util.c:59 59 if (clearenv() < 0) (gdb) bt #0 env_clean () at env-util.c:59 #1 0xb7df10fc in master_service_env_clean () at master-service.c:454 #2 0xb7df26d4 in master_service_exec_config (service=0x809e7d0, input=0xbffff7e4) at master-service-settings.c:103 #3 0xb7df29be in config_exec_fallback (service=0x809e7...
2011 Aug 02
6
[PATCH v2 0/4] Support drop directories directly from kinit
This patchset applies to klibc mainline. This patchset introduces the ability to kinit to execute scripts or executable files present in in the initramfs before switching over to the root filesystem. It is implemented by first implementing scandir() and alphasort() as present in POSIX.1-2008 in klibc itself, and then using that as the basis for iterating and executing files via a run_scripts()
2011 Aug 10
1
[PATCH v2] dirent.h add fdopendir()
...rfd(DIR * __d) diff --git a/usr/klibc/Kbuild b/usr/klibc/Kbuild index c4f9ae2..48575a5 100644 --- a/usr/klibc/Kbuild +++ b/usr/klibc/Kbuild @@ -42,7 +42,8 @@ klib-y := vsnprintf.o snprintf.o vsprintf.o sprintf.o \ seteuid.o setegid.o \ getenv.o setenv.o putenv.o __put_env.o unsetenv.o \ clearenv.o nullenv.o \ - getopt.o getopt_long.o readdir.o scandir.o alphasort.o remove.o \ + getopt.o getopt_long.o \ + readdir.o scandir.o fdopendir.o alphasort.o remove.o \ syslog.o closelog.o pty.o getpt.o posix_openpt.o isatty.o reboot.o \ time.o utime.o llseek.o nice.o getpriority.o \...
2016 Jun 07
0
[Announce] Samba 4.4.4 Available for Download
...lt;ira at samba.org> * BUG 11907: source3: Honor the core soft limit of the OS. o Günther Deschner <gd at samba.org> * BUG 11809: SMB3 multichannel: Add implementation of missing channel sequence number verification. * BUG 11864: s3:client:smbspool_krb5_wrapper: Fix the non clearenv build. * BUG 11906: s3-kerberos: Avoid entering a password change dialogue also when using MIT. o Robin Hack <hack.robin at gmail.com> * BUG 11890: ldb-samba/ldb_matching_rules: Fix CID 1349424 - Uninitialized pointer read. o Volker Lendecke <vl at samba.org> * BU...
2016 Jun 07
0
[Announce] Samba 4.4.4 Available for Download
...lt;ira at samba.org> * BUG 11907: source3: Honor the core soft limit of the OS. o Günther Deschner <gd at samba.org> * BUG 11809: SMB3 multichannel: Add implementation of missing channel sequence number verification. * BUG 11864: s3:client:smbspool_krb5_wrapper: Fix the non clearenv build. * BUG 11906: s3-kerberos: Avoid entering a password change dialogue also when using MIT. o Robin Hack <hack.robin at gmail.com> * BUG 11890: ldb-samba/ldb_matching_rules: Fix CID 1349424 - Uninitialized pointer read. o Volker Lendecke <vl at samba.org> * BU...
2007 Aug 15
0
[git patch] fstype support + minor stuff
...nlen.o \ - strncat.o strlcpy.o strlcat.o \ - strstr.o strncmp.o strncpy.o strrchr.o \ - strxspn.o strspn.o strcspn.o strpbrk.o strsep.o strtok.o \ - fnmatch.o \ - gethostname.o getdomainname.o getcwd.o \ - seteuid.o setegid.o \ - getenv.o setenv.o putenv.o __put_env.o unsetenv.o \ - clearenv.o nullenv.o \ - getopt.o getopt_long.o readdir.o remove.o \ - syslog.o closelog.o pty.o getpt.o isatty.o reboot.o \ - time.o utime.o llseek.o nice.o getpriority.o \ - qsort.o bsearch.o \ - lrand48.o jrand48.o mrand48.o nrand48.o srand48.o seed48.o \ - inet/inet_ntoa.o inet/inet_aton.o i...
2023 Jan 26
0
[klibc:time64] time: Use clock_* system calls for time-of-day and sleep
...+ clock_nanosleep.o nanosleep.o sleep.o usleep.o \ + strtotimespec.o strtotimeval.o \ raise.o abort.o assert.o alarm.o pause.o \ __signal.o sysv_signal.o bsd_signal.o siglist.o sigabbrev.o \ siglongjmp.o \ @@ -53,7 +54,8 @@ klib-y += vsnprintf.o snprintf.o vsprintf.o sprintf.o \ clearenv.o nullenv.o \ getopt.o getopt_long.o readdir.o scandir.o alphasort.o remove.o \ syslog.o closelog.o pty.o isatty.o reboot.o \ - time.o lseek.o nice.o getpriority.o \ + gettimeofday.o settimeofday.o time.o \ + lseek.o nice.o getpriority.o \ futimesat.o utime.o utimes.o \ qsort....
2018 Dec 06
3
Build error while upgrading samba 4.9.3
...: not found Checking for getpwnam : ok Checking for fdopendir : ok Checking for fstatat : ok Checking for clearenv : ok Checking for strcasecmp : ok Checking for fcvt : ok Checking for fcvtl...
2013 Aug 21
0
Build problems: klibc with Linux 3.10.7
...unk/knl/linux/usr//include -I/root/gen/trunk/knl/linux/usr//arch/powerpc/include -D__KLIBC__=2 -D__KLIBC_MINOR__=0 -D_BITSIZE=32 -fno-stack-protector -fwrapv -m32 -Os -W -Wall -Wno-sign-compare -Wno-unused-parameter -c -o usr/klibc/unsetenv.o usr/klibc/unsetenv.c ppc-linux-gcc -Wp,-MD,usr/klibc/.clearenv.o.d -nostdinc -iwithprefix include -I/root/ofs/trunk/packages/klibc-2.0.2/usr/include/arch/ppc -Iusr/include/arch/ppc -I/root/ofs/trunk/packages/klibc-2.0.2/usr/include/bits32 -Iusr/include/bits32 -I/root/ofs/trunk/packages/klibc-2.0.2/usr/klibc/../include -Iusr/klibc/../include -I/root/ofs/trunk/...
2013 Aug 21
5
Build problems: klibc with Linux 3.10.7
On Tue, Aug 20, 2013 at 07:44:39AM +0200, leroy christophe wrote: > > > Find attached two patches I have in order to build klibc 2.0.2 > against kernel 3.8.13 > We had to introduce those patches when going from kernel 3.6 to kernel 3.7 > Hope it helps. > those patches are wrong and again very brittle. just use the way it is described in `make help': A) cd ~/src/linux
2012 Nov 29
2
[LLVMdev] problem trying to write an LLVM register-allocation pass
I have a new problem: Register RBP is used in a function foo. (I am not allocating RBP to any virtual register, the instances of RBP in function foo are in the machine code when my register allocator starts.) Function foo calls function bar. Register RBP is not saved across the call, though it is live after the call. Function bar includes a virtual register. The code that I'm using to
2012 Dec 01
0
[LLVMdev] problem trying to write an LLVM register-allocation pass
...__attribute__ ((__nothrow__)) __attribute__ ((__nonnull__ (1))); extern int setenv (__const char *__name, __const char *__value, int __replace) __attribute__ ((__nothrow__)) __attribute__ ((__nonnull__ (2))); extern int unsetenv (__const char *__name) __attribute__ ((__nothrow__)); extern int clearenv (void) __attribute__ ((__nothrow__)); extern char *mktemp (char *__template) __attribute__ ((__nothrow__)) __attribute__ ((__nonnull__ (1))) ; extern int mkstemp (char *__template) __attribute__ ((__nonnull__ (1))) ; extern char *mkdtemp (char *__template) __attribute__ ((__nothrow__)) __attribute_...
2006 Jun 28
35
[klibc 00/31] klibc as a historyless patchset (updated and reorganized)
I have updated the klibc patchset based on feedback received. In particular, the patchset has been reorganized so as not to break git-bisect. Additionally, this updates the patch base to 2.6.17-git12 (d38b69689c349f35502b92e20dafb30c62d49d63) and klibc 1.4.8; the main difference on the klibc side is removal of obsolete code. This is also available as a git tree at: