static void get_secret(int sock)
{
- const char *buf, *secret;
+ const char *buf = NULL, *secret;
int len;
fflush(stdout);
usleep(20000); /* give fflush time for flushing */
+#ifdef HAVE_GETPASS
buf = getpass("Enter: ");
+#endif
secret = (buf == NULL)? "" : buf;
/* send the secret to pluto */