*** sshd.c.orig Fri Oct 4 17:00:42 1996 --- sshd.c Tue Nov 12 04:23:15 1996 *************** *** 2083,2088 **** --- 2083,2098 ---- printf("Last login: %s from %s\r\n", time_string, buf); } + #ifdef __FreeBSD__ + if (command == NULL && !quiet_login) + { + printf("%s\n\t%s %s\n\n", + "Copyright (c) 1980, 1983, 1986, 1988, 1990, 1991, 1993, 1994", + "The Regents of the University of California. ", + "All rights reserved."); + } + #endif + /* Print /etc/motd unless a command was specified or printing it was disabled in server options. Note that some machines appear to print it in /etc/profile or similar. */ *************** *** 2099,2104 **** --- 2109,2123 ---- fclose(f); } } + #ifdef __FreeBSD__ + if (command == NULL && !quiet_login) + { + sprintf(line, "%s/%.200s", _PATH_MAILDIR, pw->pw_name); + if (stat(line, &st) == 0 && st.st_size != 0) + printf("You have %smail.\n", + (st.st_mtime > st.st_atime) ? "new " : ""); + } + #endif /* Do common processing for the child, such as execing the command. */ do_child(command, pw, term, display, auth_proto, auth_data, ttyname);