1
0
mirror of https://git.FreeBSD.org/ports.git synced 2024-10-21 20:38:45 +00:00

Remove my ptys patch, because this code is unused, openpty is used instead

Mimic login more closely now:
1) Put usual Copyright line
2) You have mail
This commit is contained in:
Andrey A. Chernov 1996-11-12 01:47:39 +00:00
parent dea9fad483
commit d67a4ad9e9
Notes: svn2git 2021-03-31 03:12:20 +00:00
svn path=/head/; revision=4414
2 changed files with 74 additions and 34 deletions

View File

@ -1,19 +1,39 @@
*** pty.c.bak Fri Oct 4 17:00:42 1996
--- pty.c Tue Nov 12 03:00:54 1996
*** sshd.c.orig Fri Oct 4 17:00:42 1996
--- sshd.c Tue Nov 12 04:23:15 1996
***************
*** 306,314 ****
--- 306,319 ----
#else /* not SCO UNIX */
char buf[64];
int i;
+ #ifdef __FreeBSD__
+ const char *ptymajors = "pqrsPQRS";
+ const char *ptyminors = "0123456789abcdefghijklmnopqrstuv";
+ #else
const char *ptymajors =
"pqrstuvwxyzabcdefghijklmnoABCDEFGHIJKLMNOPQRSTUVWXYZ";
const char *ptyminors = "0123456789abcdef";
+ #endif
int num_minors = strlen(ptyminors);
int num_ptys = strlen(ptymajors) * num_minors;
*** 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);

View File

@ -1,19 +1,39 @@
*** pty.c.bak Fri Oct 4 17:00:42 1996
--- pty.c Tue Nov 12 03:00:54 1996
*** sshd.c.orig Fri Oct 4 17:00:42 1996
--- sshd.c Tue Nov 12 04:23:15 1996
***************
*** 306,314 ****
--- 306,319 ----
#else /* not SCO UNIX */
char buf[64];
int i;
+ #ifdef __FreeBSD__
+ const char *ptymajors = "pqrsPQRS";
+ const char *ptyminors = "0123456789abcdefghijklmnopqrstuv";
+ #else
const char *ptymajors =
"pqrstuvwxyzabcdefghijklmnoABCDEFGHIJKLMNOPQRSTUVWXYZ";
const char *ptyminors = "0123456789abcdef";
+ #endif
int num_minors = strlen(ptyminors);
int num_ptys = strlen(ptymajors) * num_minors;
*** 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);