Дилян Палаузов %!s(int64=2) %!d(string=hai) anos
pai
achega
ad81a4a258

+ 1 - 1
src/modules/sca/sca_call_info.c

@@ -1379,7 +1379,7 @@ void sca_call_info_ack_from_handler(sip_msg_t *msg, str *from_aor, str *to_aor)
 		// Polycom's music-on-hold implementation uses an INVITE with
 		// an empty body to get the remote party's SDP info, then INVITEs
 		// a pre-defined URI on a media server, using the remote party's
-		// SDP as the INVITE body. the media server streams hold music to
+		// SDP as the INVITE body. The media server streams hold music to
 		// the remote party.
 		//
 		// because the INVITE that triggers the hold  in this case doesn't

+ 2 - 2
src/modules/sca/sca_subscribe.c

@@ -133,7 +133,7 @@ void sca_subscription_purge_expired(unsigned int ticks, void *param)
 								   "subscribers failed\n",
 									sca_event_name_from_type(sub->event),
 									STR_FMT(&sub->target_aor));
-							// fall through anyway. the state should propagate
+							// fall through anyway. The state should propagate
 							// to subscribers when they renew call-info.
 						}
 					}
@@ -669,7 +669,7 @@ sca_subscription *sca_subscription_create(str *aor, int event, str *subscriber,
 	// dialog.id.
 	//
 	// we shm_malloc this separately in case we need to update in-memory
-	// dialog saved for this subscriber. this is likely to happen if the
+	// dialog saved for this subscriber. This is likely to happen if the
 	// subscriber goes off-line for some reason.
 	len = sizeof(char) * (call_id->len + from_tag->len + to_tag->len);
 	sub->dialog.id.s = (char *)shm_malloc(len);

+ 1 - 1
src/modules/sca/sca_util.c

@@ -465,7 +465,7 @@ int sca_call_is_held(sip_msg_t *msg)
 		return (0);
 	}
 
-	// Cf. modules_k/textops's exported is_audio_on_hold
+	// Cf. modules_k/textops' exported is_audio_on_hold
 	for(n_sess = 0, session = get_sdp_session(msg, n_sess); session != NULL;
 			n_sess++, session = get_sdp_session(msg, n_sess)) {