siproc

A primitive SIP client that spawns processes for each call
git clone git://xatko.vsos.ethz.ch/siproc.git
Log | Files | Refs

commit ea9e72c7c54e4ef25d6ad5968fd1dc8344bc6dee
parent 5a2b05eb8a228121115ffaed227844f5632ec402
Author: Dominik Schmidt <dominik@schm1dt.ch>
Date:   Tue, 27 Aug 2019 16:40:23 +0200

User the args-variable when making new calls

The legacy-botch is no longer needed.

Diffstat:
src/siproc.cpp | 2+-
1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/src/siproc.cpp b/src/siproc.cpp @@ -491,7 +491,7 @@ int main(int argc, char **argv){ MyCall *mc = new MyCall(*acc); CallOpParam prm(true); try{ - mc->makeCall(std::string(line+5), prm); + mc->makeCall(std::string(args), prm); mc->fork_on(acc->args, true); } catch(Error& err) {