Displaying 4 results from an estimated 4 matches for "authstat".
Did you mean:
authstate
2003 Nov 11
1
AIX KRB5CCNAME problem
...stumbled across some code in session.c that
confused me a bit. This code exists in the OpenSSH source from at least
as far back as 3.1 to the current source tree.
On about line 1087 of session.c we see this:
#ifdef _AIX
{
char *cp;
if ((cp = getenv("AUTHSTATE")) != NULL)
child_set_env(&env, &envsize, "AUTHSTATE", cp);
if ((cp = getenv("KRB5CCNAME")) != NULL)
child_set_env(&env, &envsize, "KRB5CCNAME", cp);
read_environment_...
2000 Jan 19
3
AIX openssh patches
...d long fromlen;
+ #else
int fromlen;
+ #endif
struct pty_cleanup_context cleanup_context;
/* Get remote host name. */
***************
*** 2328,2333 ****
--- 2365,2380 ----
if (display)
child_set_env(&env, &envsize, "DISPLAY", display);
+ {
+ char *authstate,*krb5cc;
+
+ if ((authstate = getenv("AUTHSTATE")) != NULL)
+ child_set_env(&env,&envsize,"AUTHSTATE",authstate);
+
+ if ((krb5cc = getenv("KRB5CCNAME")) != NULL)
+ child_set_env(&env,&envsize,"KRB5CCNAME",krb5cc);
+ }
+
#...
2002 Feb 04
0
[Bug 101] New: session.c modifications for correct UNICOS behavior
..., &envsize, "SSH_ORIGINAL_COMMAND",
original_command);
+#ifdef _CRAY
+ if (cray_tmpdir[0] != '\0')
+ child_set_env(&env, &envsize, "TMPDIR", cray_tmpdir);
+#endif /* _CRAY */
#ifdef _AIX
if ((cp = getenv("AUTHSTATE")) != NULL)
@@ -1392,11 +1419,13 @@
"%.100s %.100s %.100s\n",
options.xauth_location, s->auth_display[0],
s->auth_proto, s->auth_data);
+#ifndef _CRAY...
2002 Feb 28
4
UseLogin under AIX 4.3.3
Hi,
If I enable "UseLogin" under AIX, I get the following message upon
login:
/dev/pts/2: 3004-004 You must "exec" login from the lowest login
shell.
The manpage states:
"In order to preserve the integrity of the system, only one session at a
time is
allowed to be logged in to a port. This means that the login command
entered
from the shell prompt cannot succeed,