# # # patch "lru_writeback_cache.hh" # from [615df6d41efa986779fcf78b3dab09c8217ea18a] # to [fa05b036a2b82fe0b799c27168a75feee26e7692] # # patch "netsync.cc" # from [802494ec22ebb2d9c38718680677b9d6bcd5b2ab] # to [65e1a56ee8b696d881bd5761e1ab7af77edb0295] # ============================================================ --- lru_writeback_cache.hh 615df6d41efa986779fcf78b3dab09c8217ea18a +++ lru_writeback_cache.hh fa05b036a2b82fe0b799c27168a75feee26e7692 @@ -154,7 +154,7 @@ public: return (_dirty.find(key) != _dirty.end()); } - /** @brief Checks for the existance of a key in the cache. + /** @brief Checks for the existence of a key in the cache. * @param key to check for * @return bool indicating whether or not the key was found. */ @@ -193,7 +193,7 @@ public: /** @brief Inserts a key-data pair into the cache and removes entries if neccessary. * @param key object key for insertion * @param data object data for insertion - * @note This function checks key existance and touches the key if it already exists. + * @note This function checks key existence and touches the key if it already exists. */ inline void insert_clean(Key const & key, const Data & data) { ============================================================ --- netsync.cc 802494ec22ebb2d9c38718680677b9d6bcd5b2ab +++ netsync.cc 65e1a56ee8b696d881bd5761e1ab7af77edb0295 @@ -1353,7 +1353,7 @@ session::process_hello_cmd(rsa_keypair_i else { // this should now always return true since we just checked - // for the existance of this particular key + // for the existence of this particular key I(project.db.put_key(their_keyname, their_key)); W(F("saving public key for %s to database") % their_keyname); }