diff --git a/doc/Git_Access.txt b/doc/Git_Access.txt index b8c547fcf49ef96d9ab9f9c0425b29f8c9f79c89..bf8ede7fe7016972220e3cc7e81324dd6dd92b07 100644 --- a/doc/Git_Access.txt +++ b/doc/Git_Access.txt @@ -33,12 +33,18 @@ Git developer access Run: -------------------------------------------------------------- -ssh-kengen -C sflphone_org@sflphone.org +ssh-keygen -C sflphone_org@sflphone.org cat ~/.ssh/id_rsa.pub -------------------------------------------------------------- and transmit us the content of the `id_rsa.pub` file, for shared-key -authentication. Then: +authentication. Then, if you already have a cloned repository, run: + +-------------------------------------------------------------- +git-config remote.origin.url git+ssh://sflphone_org@sflphone.org/git/sflphone.git +-------------------------------------------------------------- + +Otherwise, grab a new copy: -------------------------------------------------------------- git clone git+ssh://sflphone_org@sflphone.org/git/sflphone.git @@ -46,3 +52,4 @@ cd sflphone autoreconf --install -------------------------------------------------------------- + diff --git a/src/sipvoiplink.cpp b/src/sipvoiplink.cpp index 9d1a0f5cf74d4310dd9af7fe82e6deef70ca5e59..f941aedb59efab11daa7aac015ac74ba2cfc73c8 100644 --- a/src/sipvoiplink.cpp +++ b/src/sipvoiplink.cpp @@ -156,7 +156,11 @@ SIPVoIPLink::terminate() { terminateSIPCall(); if (_initDone) { - eXosip_quit(); + // TODO The next line makes the daemon crash on + // account delete if at least one account is registered. + // It should called only when the last account + // is deleted/unregistered. + //eXosip_quit(); _initDone = false; } }