From: Viktor Krikun Date: Tue, 4 May 2010 15:01:40 +0000 (+0000) Subject: Increase default cache file path length to 256 characters X-Git-Tag: v1.2-rc1~19^2^2~8^2~21 X-Git-Url: http://git.ipfire.org/cgi-bin/gitweb.cgi?a=commitdiff_plain;h=e3831cf26e095b519de05ca7f171b93ae5f90803;p=thirdparty%2Ffreeswitch.git Increase default cache file path length to 256 characters --- diff --git a/include/zrtp.h b/include/zrtp.h index 7d09b95514..2927b2a4aa 100644 --- a/include/zrtp.h +++ b/include/zrtp.h @@ -142,7 +142,7 @@ typedef struct zrtp_config_t zrtp_callback_t cb; /** @brief Path to zrtp cache file (set if you use built-in realization) */ - zrtp_string128_t def_cache_path; + zrtp_string256_t def_cache_path; } zrtp_config_t; /** diff --git a/include/zrtp_types.h b/include/zrtp_types.h index 674a2c91bf..817caafa1d 100644 --- a/include/zrtp_types.h +++ b/include/zrtp_types.h @@ -359,7 +359,7 @@ struct zrtp_global_t /** RNG unit initialization flag. */ uint8_t rand_initialized; - zrtp_string128_t def_cache_path; + zrtp_string256_t def_cache_path; /** This object is used to protect the shared RNG hash zrtp#rand_ctx */ zrtp_mutex_t* rng_protector; diff --git a/include/zrtp_version.h b/include/zrtp_version.h index 62c6e0c49f..3f4640e659 100644 --- a/include/zrtp_version.h +++ b/include/zrtp_version.h @@ -13,7 +13,7 @@ #define LIBZRTP_VERSION_MAJOR 1 #define LIBZRTP_VERSION_MINOR 10 -#define LIBZRTP_VERSION_BUILD 593 -#define LIBZRTP_VERSION_STR "v1.10 593" +#define LIBZRTP_VERSION_BUILD 594 +#define LIBZRTP_VERSION_STR "v1.10 594" #endif /*__ZRTP_VERSION_H__*/