+Summary of changes from v023 to v024
+============================================
+
+Ben Boeckel (1):
+ Disable echo when reading the password
+
+Greg Kroah-Hartman (7):
+ fix compiler warning about fprintf
+ clean up some trailing whitespace
+ more coding style cleanups
+ don't free an array on the stack
+ fix crash when --debug is set
+ fix up some compiler warnings in read_password
+ use "quiet" mode of building if present.
+
+Marvin Vek (1):
+ Add laconica group support
+
+gregor herrmann (1):
+ BTI should not display password while user types it
+
Summary of changes from v022 to v023
============================================
+bti 024
+=============
+laconica group support from Marvin Vek
+password handling changes from Gregor Herrmann and Ben Boeckel
+
bti 023
=============
verbose mode for timestamps
return string;
}
-void read_password(char *buf, size_t len)
+static void read_password(char *buf, size_t len)
{
char pwd[80];
+ int retval;
struct termios old;
struct termios tp;
fprintf(stdout, "Enter password: ");
fflush(stdout);
- scanf("%79s", pwd);
+ tcflow(0, TCOOFF);
+ retval = scanf("%79s", pwd);
+ tcflow(0, TCOON);
fprintf(stdout, "\n");
tcsetattr(0, TCSANOW, &old);
-AC_INIT([bti], [023], [greg@kroah.com])
+AC_INIT([bti], [024], [greg@kroah.com])
AC_PREREQ(2.60)
-AM_INIT_AUTOMAKE(bti, 023)
+AM_INIT_AUTOMAKE(bti, 024)
dnl AM_CONFIG_HEADER([check-news foreign 1.9 dist-bzip2])
+m4_ifdef([AM_SILENT_RULES], [AM_SILENT_RULES([yes])])
+
AC_PROG_CC
AC_PROG_INSTALL