]> git.ipfire.org Git - thirdparty/freeswitch.git/commitdiff
FS-3709 --resolve
authorJeff Lenk <jeff@jefflenk.com>
Mon, 21 Nov 2011 15:53:27 +0000 (09:53 -0600)
committerJeff Lenk <jeff@jefflenk.com>
Mon, 21 Nov 2011 15:53:27 +0000 (09:53 -0600)
src/include/switch_core.h
src/switch_core_hash.c
src/switch_time.c

index 6987af8e181954bd012f4457525fd3f883bf8510..08d685083a3ec8e1656af10399cdf8fe2099454d 100644 (file)
@@ -1308,11 +1308,11 @@ SWITCH_DECLARE(void *) switch_core_hash_find_rdlock(_In_ switch_hash_t *hash, _I
 
 /*!
  \brief Gets the first element of a hashtable
- \param depricate_me [deprecated] NULL
+ \param deprecate_me [deprecated] NULL
  \param hash the hashtable to use
  \return The element, or NULL if it wasn't found 
 */
-SWITCH_DECLARE(switch_hash_index_t *) switch_hash_first(char *depricate_me, _In_ switch_hash_t *hash);
+SWITCH_DECLARE(switch_hash_index_t *) switch_hash_first(char *deprecate_me, _In_ switch_hash_t *hash);
 
 /*!
  \brief Gets the next element of a hashtable
index c47281db97274af707cb6cb21c4bdae64730bdb8..1cfb1424ee499c848c30f7ba05beafaae51ead11 100644 (file)
@@ -222,7 +222,7 @@ SWITCH_DECLARE(void *) switch_core_hash_find_rdlock(switch_hash_t *hash, const c
        return val;
 }
 
-SWITCH_DECLARE(switch_hash_index_t *) switch_hash_first(char *depricate_me, switch_hash_t *hash)
+SWITCH_DECLARE(switch_hash_index_t *) switch_hash_first(char *deprecate_me, switch_hash_t *hash)
 {
        return (switch_hash_index_t *) sqliteHashFirst(&hash->table);
 }
index cda237ba48fbf58561c8f117b8cf7551afc9bbba..2a5a6860ea7af9e052f5b45e61eb68f9a86662d0 100644 (file)
@@ -420,7 +420,7 @@ SWITCH_DECLARE(void) switch_time_sync(void)
        runtime.offset = runtime.reference - time_now(0);
        runtime.reference = time_now(runtime.offset);
        if (runtime.reference - last_time > 1000000 || last_time == 0) {
-               switch_log_printf(SWITCH_CHANNEL_LOG, SWITCH_LOG_INFO, "Clock syncronized to system time.\n");
+               switch_log_printf(SWITCH_CHANNEL_LOG, SWITCH_LOG_INFO, "Clock synchronized to system time.\n");
        }
        last_time = runtime.reference;
 }