search for: quiet_login

Displaying 3 results from an estimated 3 matches for "quiet_login".

2000 Feb 27
0
[PATCH] Fix login.conf, expiration, BSD compatibility in OpenSSH
...lc; char *fname; #endif /* LOGIN_CAP */ +#ifdef __FreeBSD__ +#define DEFAULT_WARN (2L * 7L * 86400L) /* Two weeks */ + struct timeval tv; + time_t warntime = DEFAULT_WARN; +#endif /* __FreeBSD__ */ /* Get remote host name. */ hostname = get_canonical_hostname(); @@ -2157,6 +2201,50 @@ quiet_login = login_getcapbool(lc, "hushlogin", quiet_login); #endif /* LOGIN_CAP */ +#ifdef __FreeBSD__ + if (pw->pw_change || pw->pw_expire) + (void)gettimeofday(&tv, NULL); +#ifdef LOGIN_CAP + warntime = login_getcaptime(lc, "warnpassword", + DEFAULT_WARN, DEFAUL...
2000 May 15
1
AIX authenticate patches
...auth-rsa.c. */ int no_port_forwarding_flag = 0; @@ -631,6 +642,15 @@ fclose(f); } } +#if defined(WITH_AIXAUTHENTICATE) + /* + * AIX handles the lastlog info differently. Display it here. + */ + if (command == NULL && aixloginmsg && *aixloginmsg && + !quiet_login && !options.use_login) { + printf("%s\n", aixloginmsg); + } +#endif /* Do common processing for the child, such as execing the command. */ do_child(command, pw, s->term, s->display, s->auth_proto, s->auth_data, s->tty); /* NOTREACHED */
2000 Jan 19
3
AIX openssh patches
...t. */ { int dlen; ! command = packet_get_string((unsigned int *)&dlen); debug("Executing command '%.500s'", command); packet_integrity_check(plen, 4 + dlen, type); } *************** *** 1936,1942 **** --- 1969,1979 ---- struct stat st; int quiet_login; struct sockaddr_in from; + #ifdef _AIX + unsigned 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, &quo...