search for: pututline

Displaying 20 results from an estimated 53 matches for "pututline".

2000 Apr 21
0
OpenSSH 1.2.3 on AIX 4.3.3
...confirmed that it works under Solaris 2.[67] too. Don't forget to run autoconf. --- bsd-login.c.orig Sat Dec 25 18:21:48 1999 +++ bsd-login.c Thu Apr 20 18:26:41 2000 @@ -65,15 +65,23 @@ struct utmp *utp; #endif /* defined(HAVE_UTMPX_H) && defined(USE_UTMPX) */ { +#if defined(HAVE_PUTUTLINE) + struct utmp *old_utp; +#else #if defined(HAVE_HOST_IN_UTMP) struct utmp old_ut; #endif + int tty; +#endif /* HAVE_PUTUTLINE */ #if defined(HAVE_UTMPX_H) && defined(USE_UTMPX) struct utmpx *old_utx; #endif /* defined(HAVE_UTMPX_H) && defined(USE_UTMPX) */ register int fd...
2000 Sep 06
1
openssh 2.2.0p1 and finger
Hi all, just I installed OpenSSH 2.2.0p1 on a HPUX-11 machine and it works. But when I connected to the machine and give "finger -R"-command then in the "Where"-column I see the hostname of the openssh-server instead of the hostname where I came from. Does anybody have an idea? Thanks Stephan -- LDS Brandenburg Dr. Stephan Hendl fon: +49-(0)331-39 471 fax:
2002 Jan 09
1
64-bit HP/UX 11.00 wtmp corruption identified
...t know what a good work around could be. I temporarily modified the /usr/include/utmp.h structure to use int32_t as the type for ut_time instead of long and rebuilt loginrec.o and relinked sshd. OpenSSH performed correctly, updating wtmp like a champ. I thought that we could use utmpname and the pututline tools (which will convert the 72 byte structure to a 60 byte structure somehow), but their behavior is not actually compatible with wtmp. I also thought about defining a custom utmp structure when building on HP-UX 64-bit, but that really seems like a bad way of doing it. As far as I can tell, th...
2005 Mar 30
1
utmp update for bsd systems
...ds support for updating utmp on bsds. code similarly ripped from openbsd's ftpd (; cu -- paranoic mickey (my employers have changed but, the name has remained) --- utmp.c Thu Aug 12 14:24:20 2004 +++ /home/mickey/utmp.c Wed Mar 30 15:51:40 2005 @@ -261,6 +261,7 @@ } #ifndef HAVE_PUTUTLINE +#include <ttyent.h> /**************************************************************************** Update utmp file directly. No subroutine interface: probably a BSD system. @@ -268,8 +269,50 @@ static void pututline_my(pstring uname, struct utmp *u, BOOL claim) { - DEBUG(1,("p...
2003 Jul 09
2
Samba3b2, solaris, AD suport and libiconv.
...igure script in samba references the same. So I did, and have now got the following error: example% ./configure --prefix=/usr/local/samba3 --with-krb5=/usr/local/kerberos --with- libiconv=/usr/local/iconv --with-ldap (Both kerberos and libiconv compiled with no problems). ... checking whether pututline returns pointer... yes checking for ut_syslen in utmpx... yes checking for iconv in /usr/local/iconv... yes checking for working iconv... no configure: WARNING: Sufficient support for iconv function was not found. Install libiconv from http://freshmeat.net/projects/libiconv/ for better charset...
2005 Apr 14
1
utmp update for bsd systems (try 2)
...ds support for updating utmp on bsds. code similarly ripped from openbsd's ftpd (; cu -- paranoic mickey (my employers have changed but, the name has remained) --- utmp.c Thu Aug 12 14:24:20 2004 +++ /home/mickey/utmp.c Wed Mar 30 15:51:40 2005 @@ -261,6 +261,7 @@ } #ifndef HAVE_PUTUTLINE +#include <ttyent.h> /**************************************************************************** Update utmp file directly. No subroutine interface: probably a BSD system. @@ -268,8 +269,50 @@ static void pututline_my(pstring uname, struct utmp *u, BOOL claim) { - DEBUG(1,("p...
2005 Jun 28
0
Fwd: Re: Possible Samba Memory Leak
...a@samba.org> wrote: > > > > > 3.0.2a is very old. Can you attempt the same with > a > > 3.0.14a at least. > > Hi Jeremy, > > Attempts to configure samba 3.0.14a with > --without-libiconv result in the error: > > <snip> > checking whether pututline returns pointer... yes > checking for ut_syslen in utmpx... no > configure: error: argument to --with-libiconv must > be > a directory > </snip> > > <snip> > Linking bin/smbd > lib/iconv.o(.text+0x2a8): In function `sys_iconv': > : undefined reference...
2001 Nov 07
1
Configuring 2.2.2 (or 2.0.7) on Digital Unix 4.0f fails - "No locking"
...r sin_len in sock... no checking whether seekdir returns void... no checking for __FILE__ macro... yes checking for __FUNCTION__ macro... yes checking if gettimeofday takes tz argument... yes checking for C99 vsnprintf... no checking for broken readdir... no checking for utimbuf... yes checking for pututline... yes checking for pututxline... yes checking for updwtmp... no checking for updwtmpx... no checking for getutmpx... no checking for ut_name in utmp... yes checking for ut_user in utmp... yes checking for ut_id in utmp... yes checking for ut_host in utmp... yes checking for ut_time in utmp... yes...
2000 Dec 27
2
implicit declaration warnings
Hi, When I tested the latest snapshot on FreeBSD 4.2, I noticed some implicit declaration warnings I didn't recall seeing on Linux. I think this is caused by the fact that if autoconf does detect the presence of some BSD capability, necessary header files and declarations may not be included (as these are assumed to be the same ~everywhere, and already included). If such capability is
2001 Feb 13
1
configure.in reorder patch
...vis waitpid _getpty __b64_ntop) -dnl Checks for time functions -AC_CHECK_FUNCS(gettimeofday time) -dnl Checks for libutil functions -AC_CHECK_HEADERS(libutil.h) -AC_CHECK_FUNCS(login logout updwtmp logwtmp) -dnl Checks for utmp functions -AC_CHECK_FUNCS(endutent getutent getutid getutline pututline setutent) -AC_CHECK_FUNCS(utmpname) -dnl Checks for utmpx functions -AC_CHECK_FUNCS(endutxent getutxent getutxid getutxline pututxline ) -AC_CHECK_FUNCS(setutxent utmpxname) - -AC_CHECK_FUNC(getuserattr, - [AC_DEFINE(HAVE_GETUSERATTR)], - [AC_CHECK_LIB(s, getuserattr, [LIBS="$LIBS -ls&quot...
2001 Oct 31
1
OpenSSH-3.0p1-pre-CVS: configure.ac checks for login in -lutil and -lbsd?
OpenSSH-3.0p1-pre, from CVS as of about 2001-10-30 23:45 UTC. Any particular reason why configure is checking for login() in -lutil, finds it, then checks for it again in -lbsd? Here's the relevant excerpts (Red Hat Linux 6.2, , kernel-2.2.19, glibc-2.1.3, egcs-1.1.2, autoconf-2.52): $ CFLAGS='-O2 -mpentium -Wall'; export CFLAGS $ ./configure
2003 Jun 02
2
./configure --with-pam fails allways
...configure:9634: checking for __FUNCTION__ macro configure:9668: checking if gettimeofday takes tz argument configure:9707: checking for __va_copy configure:9742: checking for C99 vsnprintf configure:9801: checking for broken readdir configure:9841: checking for utimbuf configure:9879: checking for pututline configure:9879: checking for pututxline configure:9879: checking for updwtmp configure:9879: checking for updwtmpx configure:9879: checking for getutmpx configure:9933: checking for ut_name in utmp configure:9968: checking for ut_user in utmp configure:10003: checking for ut_id in utmp configure:10...
2002 Nov 21
0
please can someone help me?
...king whether seekdir returns void... no checking for __FILE__ macro... yes checking for __FUNCTION__ macro... no checking if gettimeofday takes tz argument... yes checking for __va_copy... no checking for C99 vsnprintf... no checking for broken readdir... no checking for utimbuf... yes checking for pututline... yes checking for pututxline... yes checking for updwtmp... no checking for updwtmpx... no checking for getutmpx... no checking for ut_name in utmp... yes checking for ut_user in utmp... yes checking for ut_id in utmp... yes checking for ut_host in utmp... yes checking for ut_time in utmp... yes...
2000 Aug 11
1
compiling openssh-2.1.1p4 on SPARC Solaris 8
...p... no checking for gettimeofday... yes checking for time... yes checking for login... no checking for logout... no checking for updwtmp... yes checking for logwtmp... no checking for entutent... no checking for getutent... yes checking for getutid... yes checking for getutline... yes checking for pututline... yes checking for setutent... yes checking for utmpname... yes checking for entutxent... no checking for getutxent... yes checking for getutxid... yes checking for getutxline... yes checking for pututxline... yes checking for setutxent... yes checking for utmpxname... yes checking for getuserattr...
2002 Jul 26
1
creating unicode_map.437 and unicode_map.ISO8859-1?
Hello, I am running HP-UX 11 with Samba 2.2.5 binaries for HPUX and I keep getting the error that Samba can't find the unicode_map.xxx file. Well, I notice that all I have in /usr/local/samba/lib/codepages is codepage type files, not unicode. Why do the binaries not include a compiled make_unicodemap? I did download the source and found the .c file for the command. When I try to run
2000 Jun 14
1
OpenSSH 2.1.1p1 on SCO Unixware 7.1.0
...p... no checking for gettimeofday... yes checking for time... yes checking for login... no checking for logout... no checking for updwtmp... yes checking for logwtmp... no checking for entutent... no checking for getutent... yes checking for getutid... yes checking for getutline... yes checking for pututline... yes checking for setutent... yes checking for utmpname... yes checking for entutxent... no checking for getutxent... yes checking for getutxid... yes checking for getutxline... yes checking for pututxline... yes checking for setutxent... yes checking for utmpxname... yes checking for login... (c...
2000 Jul 03
0
FreeBSD 3.5-STABLE
...hecking for gettimeofday... yes checking for time... yes checking for login... yes checking for logout... yes checking for updwtmp... no checking for logwtmp... yes checking for entutent... no checking for getutent... no checking for getutid... no checking for getutline... no checking for pututline... no checking for setutent... no checking for utmpname... no checking for entutxent... no checking for getutxent... no checking for getutxid... no checking for getutxline... no checking for pututxline... no checking for setutxent... no checking for utmpxname... no checking for login... (...
2002 Oct 11
0
[Fwd: samba-2.2.5 in Tru64 unix v4.0e]
...ro... (cached) yes checking for __FUNCTION__ macro... (cached) yes checking if gettimeofday takes tz argument... (cached) yes checking for __va_copy... (cached) yes checking for C99 vsnprintf... (cached) no checking for broken readdir... (cached) no checking for utimbuf... (cached) yes checking for pututline... (cached) yes checking for pututxline... (cached) yes checking for updwtmp... (cached) no checking for updwtmpx... (cached) no checking for getutmpx... (cached) no checking for ut_name in utmp... (cached) yes checking for ut_user in utmp... (cached) yes checking for ut_id in utmp... (cached) yes...
2001 Feb 01
0
warnings on aix325
...claration of function `closelog' loginrec.c: In function `login_set_current_time': loginrec.c:376: warning: implicit declaration of function `gettimeofday' loginrec.c:721: warning: implicit declaration of function `setutent' loginrec.c:722: warning: implicit declaration of function `pututline' servconf.c: In function `parse_token': servconf.c:272: warning: implicit declaration of function `strcasecmp' serverloop.c: In function `wait_until_can_do_something': serverloop.c:197: warning: implicit declaration of function `bzero' serverloop.c: In function `process_output...
2002 Jul 01
5
./configure --with-pam
...o... (cached) yes checking for __FUNCTION__ macro... (cached) yes checking if gettimeofday takes tz argument... (cached) yes checking for __va_copy... (cached) yes checking for C99 vsnprintf... (cached) yes checking for broken readdir... (cached) no checking for utimbuf... (cached) yes checking for pututline... (cached) yes checking for pututxline... (cached) yes checking for updwtmp... (cached) yes checking for updwtmpx... (cached) yes checking for getutmpx... (cached) yes checking for ut_name in utmp... (cached) yes checking for ut_user in utmp... (cached) yes checking for ut_id in utmp... (cached) y...