aboutsummaryrefslogtreecommitdiff
path: root/bdep/git.cxx
diff options
context:
space:
mode:
Diffstat (limited to 'bdep/git.cxx')
-rw-r--r--bdep/git.cxx4
1 files changed, 2 insertions, 2 deletions
diff --git a/bdep/git.cxx b/bdep/git.cxx
index 91964aa..9509275 100644
--- a/bdep/git.cxx
+++ b/bdep/git.cxx
@@ -45,7 +45,7 @@ namespace bdep
}
optional<string>
- git_line (process&& pr, fdpipe&& pipe, bool ie)
+ git_line (process&& pr, fdpipe&& pipe, bool ie, char delim)
{
optional<string> r;
@@ -56,7 +56,7 @@ namespace bdep
ifdstream is (move (pipe.in), fdstream_mode::skip, ifdstream::badbit);
string l;
- if (!eof (getline (is, l)))
+ if (!eof (getline (is, l, delim)))
r = move (l);
is.close (); // Detect errors.