aboutsummaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorPau Espin Pedrol <pespin@sysmocom.de>2019-06-20 10:45:35 +0200
committerPau Espin Pedrol <pespin@sysmocom.de>2019-06-20 10:45:37 +0200
commitfe5b7046ea5db65c2bdf6759fbc2b3e65c0eb3aa (patch)
tree1e5af6aab2c3fb1c7019868cc1149022ea9b406d
parent718f32fa88de1bf2643097147aaac3c35c29b6b1 (diff)
sms_queue.c: Improve misleading log line
Otherwise when read in a log file it seems it's really going to send 20 sms even if there's none to send. Change-Id: Ieb9bb61a90f295d2ba5fb67a2abee2d30785876d
-rw-r--r--src/libmsc/sms_queue.c2
1 files changed, 1 insertions, 1 deletions
diff --git a/src/libmsc/sms_queue.c b/src/libmsc/sms_queue.c
index 6346c1d43..d60cb4a01 100644
--- a/src/libmsc/sms_queue.c
+++ b/src/libmsc/sms_queue.c
@@ -256,7 +256,7 @@ static void sms_submit_pending(void *_data)
unsigned long long first_sub = 0;
int attempted = 0, rounds = 0;
- LOGP(DLSMS, LOGL_DEBUG, "Attempting to send %d SMS\n", attempts);
+ LOGP(DLSMS, LOGL_DEBUG, "Attempting to send up to %d SMS\n", attempts);
do {
struct gsm_sms_pending *pending;