Rename queryValidPaths() to queryAllValidPaths()

This commit is contained in:
Eelco Dolstra 2012-07-11 10:49:04 -04:00
parent eb3036da87
commit 667d5f1936
9 changed files with 17 additions and 17 deletions

View file

@ -563,9 +563,9 @@ static void performOp(unsigned int clientVersion,
break;
}
case wopQueryValidPaths: {
case wopQueryAllValidPaths: {
startWork();
PathSet paths = store->queryValidPaths();
PathSet paths = store->queryAllValidPaths();
stopWork();
writeStrings(paths, to);
break;