summaryrefslogtreecommitdiffstats
path: root/winsup/cygwin/uinfo.cc
diff options
context:
space:
mode:
authorCorinna Vinschen <corinna@vinschen.de>2014-02-14 14:25:19 +0000
committerCorinna Vinschen <corinna@vinschen.de>2014-02-14 14:25:19 +0000
commit2889130e0b79b5be27f041bf464f2953fed0786e (patch)
tree7637ed46763c4a66e0e4c55a10829ec016c89e46 /winsup/cygwin/uinfo.cc
parent1eedd4c98c900290fa705829601e785527b27511 (diff)
downloadcygnal-2889130e0b79b5be27f041bf464f2953fed0786e.tar.gz
cygnal-2889130e0b79b5be27f041bf464f2953fed0786e.tar.bz2
cygnal-2889130e0b79b5be27f041bf464f2953fed0786e.zip
* uinfo.cc (pwdgrp::fetch_account_from_windows): Default to /bin/bash
as login shell.
Diffstat (limited to 'winsup/cygwin/uinfo.cc')
-rw-r--r--winsup/cygwin/uinfo.cc2
1 files changed, 1 insertions, 1 deletions
diff --git a/winsup/cygwin/uinfo.cc b/winsup/cygwin/uinfo.cc
index e6533c23a..5a0177b82 100644
--- a/winsup/cygwin/uinfo.cc
+++ b/winsup/cygwin/uinfo.cc
@@ -1698,7 +1698,7 @@ pwdgrp::fetch_account_from_windows (fetch_user_arg_t &arg, bool group)
dom, name,
sid.string (sidstr),
home ? L"" : L"/home/", home ?: user ?: name,
- shell ?: L"/bin/sh");
+ shell ?: L"/bin/bash");
sys_wcstombs_alloc (&line, HEAP_BUF, linebuf);
debug_printf ("line: <%s>", line);
return line;