This is an automated email from the git hooks/post-receive script. It was generated because a ref change was pushed to the repository containing the project "Triton Repository". The branch, master has been updated via 662e9e82a431578e053d5a9ae0682a7bb8d6b4e0 (commit) from 5971f790f31382d5954067f9853eb4b57b3762a1 (commit) Those revisions listed above that are new to this repository have not appeared on any other notification email; so we list those revisions in full, below. - Log ----------------------------------------------------------------- commit 662e9e82a431578e053d5a9ae0682a7bb8d6b4e0 Author: Phil Carns <[email protected]> Date: Tue Mar 20 17:45:17 2012 -0400 bug fix: inverted discard_data option ----------------------------------------------------------------------- Summary of changes: code/src/transactional-osd/transactional-osd.ae | 4 ++-- 1 files changed, 2 insertions(+), 2 deletions(-) Diff of changes: diff --git a/code/src/transactional-osd/transactional-osd.ae b/code/src/transactional-osd/transactional-osd.ae index a4827c3..1aa26e6 100644 --- a/code/src/transactional-osd/transactional-osd.ae +++ b/code/src/transactional-osd/transactional-osd.ae @@ -3409,9 +3409,9 @@ static triton_ret_t discard_data_updater(const char *key, const char *value) { assert(!strcmp(key, discard_data_confkey)); - if(strcmp(value, "yes")) + if(strcmp(value, "yes") == 0) discard_data = 1; - else if (strcmp(value, "no")) + else if (strcmp(value, "no") == 0) discard_data = 0; else return(TRITON_ERR_INVAL); hooks/post-receive -- Triton Repository