From 7c6c6a9ecc1f0722d63430336b18f964d8b2ea03 Mon Sep 17 00:00:00 2001 From: Colin Patrick McCabe Date: Tue, 31 May 2011 17:03:23 -0700 Subject: [PATCH] rados_sync: don't hash paths with periods A period is not such a bad character. Signed-off-by: Colin McCabe --- src/rados_sync.cc | 4 ---- 1 file changed, 4 deletions(-) diff --git a/src/rados_sync.cc b/src/rados_sync.cc index 8e2b06f948a..d8b88396b40 100644 --- a/src/rados_sync.cc +++ b/src/rados_sync.cc @@ -197,10 +197,6 @@ public: c = '_'; need_hash = true; } - else if (c == '.') { - c = '@'; - need_hash = true; - } else if (c == '\n') { c = '@'; need_hash = true; -- 2.47.3