From 8e3f0e7185ca33f76faeda86736b540bb59abd54 Mon Sep 17 00:00:00 2001 From: Holger Hans Peter Freyther Date: Mon, 10 Jan 2011 17:04:06 +0100 Subject: [PATCH] silent sms: Fix the silent SMS feature once again It got broken in the refactoring of 20474ad02983861cb6a9542916eaeb78a6615604. --- openbsc/src/vty_interface_layer3.c | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/openbsc/src/vty_interface_layer3.c b/openbsc/src/vty_interface_layer3.c index 56b496678..526ae9e41 100644 --- a/openbsc/src/vty_interface_layer3.c +++ b/openbsc/src/vty_interface_layer3.c @@ -248,7 +248,7 @@ DEFUN(subscriber_silent_sms, } str = argv_concat(argv, argc, 2); - rc = _send_sms_str(subscr, str, 0); + rc = _send_sms_str(subscr, str, 64); talloc_free(str); subscr_put(subscr);