Increase default cache file path length to 256 characters

This commit is contained in:
Viktor Krikun 2010-05-04 15:01:40 +00:00 committed by Travis Cross
parent 5ae7ebc1f2
commit e3831cf26e
3 changed files with 4 additions and 4 deletions

View File

@ -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;
/**

View File

@ -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;

View File

@ -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__*/