# HG changeset patch # User Matt Johnston # Date 1407333889 -28800 # Node ID f92394f3f3323252b0e03b74afee45e77eb4e4bc # Parent 36eacc322e00924e511810c519bf5a3f05898cdd# Parent 1bf92da7a2a0b1634cd686713974a4157d94adc1 Merge pull request #2 from iquaba/patch-1 Try without identifying current user diff -r 36eacc322e00 -r f92394f3f332 cli-runopts.c --- a/cli-runopts.c Mon Jul 28 23:23:49 2014 +0800 +++ b/cli-runopts.c Wed Aug 06 22:04:49 2014 +0800 @@ -684,7 +684,7 @@ pw = getpwuid(uid); if (pw == NULL || pw->pw_name == NULL) { - dropbear_exit("Unknown own user"); + dropbear_log(LOG_INFO, "Warning: failed to identify current user. Trying anyway."); } cli_opts.own_user = m_strdup(pw->pw_name);