This is an automated email from the git hooks/post-receive script. sthibault pushed a commit to branch upstream in repository hurd.
commit b17be9b496a6dfe10babb8102d8e55ad9a3fc2e2 Author: Justus Winter <[email protected]> Date: Wed Feb 5 01:00:48 2014 +0100 daemons/getty: always print a newline before the banner * daemons/getty.c (load_banner): Drop first newline from default banner. (print_banner): Print a newline. --- daemons/getty.c | 3 ++- 1 file changed, 2 insertions(+), 1 deletion(-) diff --git a/daemons/getty.c b/daemons/getty.c index 7112660..40ad4d7 100644 --- a/daemons/getty.c +++ b/daemons/getty.c @@ -102,7 +102,7 @@ load_banner (void) out: free (buf); - return "\r\n\n\\s \\r (\\n) (\\l)\r\n\n"; + return "\n\\s \\r (\\n) (\\l)\r\n\n"; } /* Print a suitable welcome banner */ @@ -115,6 +115,7 @@ print_banner (int fd, char *ttyname) if (uname (&u)) u.sysname[0] = u.release[0] = '\0'; + write (fd, "\r\n", 2); for (s = load_banner (); *s; s++) { for (t = s; *t && *t != '\\'; t++) /* nomnomnom */; -- Alioth's /usr/local/bin/git-commit-notice on /srv/git.debian.org/git/pkg-hurd/hurd.git
