Imported Upstream version 2.8.0
[platform/upstream/git.git] / shell.c
diff --git a/shell.c b/shell.c
index c3bf8ec..c5439a6 100644 (file)
--- a/shell.c
+++ b/shell.c
@@ -13,7 +13,7 @@ static int do_generic_cmd(const char *me, char *arg)
        const char *my_argv[4];
 
        setup_path();
-       if (!arg || !(arg = sq_dequote(arg)) || *arg == '-')
+       if (!arg || !(arg = sq_dequote(arg)))
                die("bad argument");
        if (!starts_with(me, "git-"))
                die("bad command");
@@ -88,7 +88,7 @@ static void run_shell(void)
                int count;
 
                fprintf(stderr, "git> ");
-               if (strbuf_getline(&line, stdin, '\n') == EOF) {
+               if (strbuf_getline_lf(&line, stdin) == EOF) {
                        fprintf(stderr, "\n");
                        strbuf_release(&line);
                        break;