From: Ian Jackson Date: Fri, 14 Aug 2009 19:07:09 +0000 (+0100) Subject: New --dict-no-update option prevents some rsyncs, for testing. (but is a bit broken... X-Git-Tag: 3.1~2 X-Git-Url: http://www.chiark.greenend.org.uk/ucgi/~yarrgweb/git?p=ypp-sc-tools.web-live.git;a=commitdiff_plain;h=557c960ce04d62398aa24da70ebcae5c3e3abcd5 New --dict-no-update option prevents some rsyncs, for testing. (but is a bit broken, and not documented) --- diff --git a/yarrg/convert.c b/yarrg/convert.c index adccb1c..555eefe 100644 --- a/yarrg/convert.c +++ b/yarrg/convert.c @@ -262,6 +262,7 @@ int main(int argc, char **argv) { else if (IS("--dict-read-only")) o_flags &= (~ffs_dict | ff_dict_fetch); else if (IS("--dict-anon")) o_flags &= ~ff_dict_pirate; else if (IS("--dict-submit")) o_flags |= ff_dict_fetch|ff_dict_submit; + else if (IS("--dict-no-update")) o_flags &= ~ff_dict_fetch; // testing else if (IS("--raw-tsv")) outputmode(omk_raw,0); else if (IS("--upload")) outputmode_uploads(); else if (IS("--upload-yarrg")) outputmode(omk_upload_yarrg,arg+2);