diff options
-rwxr-xr-x | clients/bscmd.brev | 2 | ||||
-rwxr-xr-x | clients/bscmd.scm | 2 |
2 files changed, 2 insertions, 2 deletions
diff --git a/clients/bscmd.brev b/clients/bscmd.brev index 9fee95c..0455f93 100755 --- a/clients/bscmd.brev +++ b/clients/bscmd.brev @@ -65,7 +65,7 @@ (match (cdr argument-stragglers) (((? string? command) (? string? params)) (baresip-transact command params)) - (((? string? command)) (print (baresip-transact command #f))) + (((? string? command)) (baresip-transact command #f)) (() (watch-events)) (_ (print "Expected: COMMAND PARAMS")))) diff --git a/clients/bscmd.scm b/clients/bscmd.scm index 9ac39bd..a7feb42 100755 --- a/clients/bscmd.scm +++ b/clients/bscmd.scm @@ -6,6 +6,6 @@ ;;; bscmd ;;; When called without arguments, displays the stream of events from baresip. -(import (chicken random) srfi-1 (chicken port) define-options anaphora json matchable netstring socket) +(import (chicken random) srfi-1 (chicken port) base64 brev-separate define-options anaphora json matchable netstring socket) (include "bscmd.brev") |