Fixed breakage introduced by windows port. com_err() is supposed to
authorTheodore Tso <tytso@mit.edu>
Fri, 24 Mar 1995 00:00:36 +0000 (00:00 +0000)
committerTheodore Tso <tytso@mit.edu>
Fri, 24 Mar 1995 00:00:36 +0000 (00:00 +0000)
print a newline at after printing the error message!

git-svn-id: svn://anonsvn.mit.edu/krb5/trunk@5206 dc483132-0cff-0310-8789-dd5450dbe970

src/util/et/ChangeLog
src/util/et/com_err.c

index bf6bfa03898ef56022a0d29100812b9379100419..1a4fb36bcb0a0b7e00dfcaec5dd2e6b9465a1b9a 100644 (file)
@@ -1,3 +1,9 @@
+Thu Mar 23 19:00:03 1995  Theodore Y. Ts'o  <tytso@dcl>
+
+       * com_err.c (default_com_err_proc): Fixed breakage introduced by
+               windows port.  com_err() is supposed to print a newline at
+               after printing the error message!
+
 Wed Mar 22 11:34:09 1995 Keith Vetter (keithv@fusion.com)
 
        * com_err.c: added _WINDOWS equivalent condition to HAVE_STDARG_H
index 4ed2472a6ce2262500c8f226fe8e65da02aaf47d..43b315264683bcf9265d3bf236b243813bd44197 100644 (file)
@@ -70,6 +70,9 @@ static void
     MessageBox (NULL, errbuf, "Kerboros", MB_ICONEXCLAMATION);
 #else
     fputs (errbuf, stderr);
+    /* should do this only on a tty in raw mode */
+    putc('\r', stderr);
+    putc('\n', stderr);
     fflush(stderr);
 #endif
 }