It wasn't possible to updated cvs repositories.
Line 718 in cvs.module was:
db_query("UPDATE {cvs_repositories} SET name = '%s', root = '%s', modules = '%s', diffurl = '%s', newurl = '%s', trackerurl = '%s', method = %d WHERE name = '%s'", $repo->name, $repo->root, $repo->modules, $repo->diffurl, $repo->newurl, $repo->trackerurl, $repo->method, $name);
but should be:
db_query("UPDATE {cvs_repositories} SET name = '%s', root = '%s', modules = '%s', diffurl = '%s', newurl = '%s', trackerurl = '%s', method = %d WHERE rid = '%s'", $repo->name, $repo->root, $repo->modules, $repo->diffurl, $repo->newurl, $repo->trackerurl, $repo->method, $rid);
i.e. $name wasn't working, and we should check on $rid instead anyway
Comments
Comment #1
jakeg commentedcommitted a few weeks ago, forgot to update this
Comment #2
(not verified) commented