From e3831cf26e095b519de05ca7f171b93ae5f90803 Mon Sep 17 00:00:00 2001 From: Viktor Krikun Date: Tue, 4 May 2010 15:01:40 +0000 Subject: [PATCH] Increase default cache file path length to 256 characters --- include/zrtp.h | 2 +- include/zrtp_types.h | 2 +- include/zrtp_version.h | 4 ++-- 3 files changed, 4 insertions(+), 4 deletions(-) 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__*/