Simon Atanasyan wrote on Tue, Jul 20, 2010 at 19:51:47 +0400: > + apr_hash_set(fs_config, SVN_FS_CONFIG_FSFS_REP_SHARING, > + APR_HASH_KEY_STRING, > + (opt_state->fsfs_no_rep_sharing ? "0" : "1")); > + > apr_hash_set(fs_config, SVN_FS_CONFIG_BDB_TXN_NOSYNC, > APR_HASH_KEY_STRING, > (opt_state->bdb_txn_nosync ? "1" : "0"));
So we're using stringified booleans? I thought usually we use existence/lack of the key as the test.