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
This commit is contained in:
Pau Espin 2019-06-20 10:45:35 +02:00
parent 718f32fa88
commit fe5b7046ea
1 changed files with 1 additions and 1 deletions

View File

@ -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;