]> git.ipfire.org Git - thirdparty/freeswitch.git/commitdiff
FS-10601: [freeswitch-core] accomodate should be accommodate #resolve
authorAnthony Minessale <anthm@freeswitch.org>
Mon, 21 Aug 2017 22:09:24 +0000 (17:09 -0500)
committerAnthony Minessale <anthm@freeswitch.org>
Mon, 21 Aug 2017 22:09:24 +0000 (17:09 -0500)
src/mod/applications/mod_conference/conference_video.c
src/mod/event_handlers/mod_cdr_pg_csv/mod_cdr_pg_csv.c
src/switch_hashtable.c

index 97fdce3266f82327339fddae501807e3db6d6eb7..fa6d18ea594c955ac99067cb66247613dfffc9dd 100644 (file)
@@ -2834,7 +2834,7 @@ void conference_video_check_auto_bitrate(conference_member_t *member, mcu_layer_
                                                  switch_channel_get_name(member->channel), kps);
        } else {
                if (layer && conference_utils_member_test_flag(member, MFLAG_CAN_BE_SEEN)) {
-                       switch_log_printf(SWITCH_CHANNEL_LOG, SWITCH_LOG_DEBUG1, "%s auto-setting bitrate to %dkps to accomodate %dx%d resolution\n",
+                       switch_log_printf(SWITCH_CHANNEL_LOG, SWITCH_LOG_DEBUG1, "%s auto-setting bitrate to %dkps to accommodate %dx%d resolution\n",
                                                          switch_channel_get_name(member->channel), kps, layer->screen_w, layer->screen_h);
                } else {
                        kps = min;
index 419d6a29d64d9ee014b4f53cc76582353b03b859..885c35c64c03c7d5fb6f865a4e62480e91cc81cc 100644 (file)
@@ -372,7 +372,7 @@ static switch_status_t my_on_reporting(switch_core_session_t *session)
                        }
                }
 
-               /* Resize values buffer to accomodate next var */
+               /* Resize values buffer to accommodate next var */
                len = strlen(pq_var);
                tmp = realloc(values, offset + len);
                values = tmp;
index c7676990b664c66ba5cfa246706a9ca01a541df2..66669acb63d1c64292c387616c33dc756d6189a3 100644 (file)
@@ -93,7 +93,7 @@ switch_create_hashtable(switch_hashtable_t **hp, unsigned int minsize,
 static int
 hashtable_expand(switch_hashtable_t *h)
 {
-       /* Double the size of the table to accomodate more entries */
+       /* Double the size of the table to accommodate more entries */
        struct entry **newtable;
        struct entry *e;
        struct entry **pE;