Re: ssh as user: setrlimit failed

2001-10-05 Thread James Morrison
I have found the offending piece of code. original_real_uid = getuid(); original_effective_uid = geteuid(); #ifdef HAVE_SETRLIMIT /* If we are installed setuid root be careful to not drop core. */ if (original_real_uid != original_effective_uid) { s

Re: ssh as user: setrlimit failed

2001-10-05 Thread James Morrison
--- Raimund Huemmer <[EMAIL PROTECTED]> wrote: I've noticed this problem with any installed version of ssh. However, if you compile it yourself and use that compiled and not installed copy it will work. I don't know what causes this. > Hi, > > I have recently installed ssh. If I want to use it a

Re: ssh as user: setrlimit failed

2001-10-05 Thread Roland McGrath
Please use gdb to find the setrlimit call that fails and see what its parameters are. Also note all the setrlimit or getrlimit calls that happen before the failing one, and show us the complete list. Thanks, Roland

ssh as user: setrlimit failed

2001-10-05 Thread Raimund Huemmer
Hi, I have recently installed ssh. If I want to use it as user I get this error message: bash-2.04$ ssh [EMAIL PROTECTED] setrlimit failed: Function not implemented As root it works perfectly. I installed the package ssh_2.5.2p2-3_hurd-i386.deb (with all other dependend pkg). Thanks in advance