1
0
Fork 0

bracket mistake

This commit is contained in:
hkernbach 2019-12-02 17:44:42 +01:00
parent 0e78ccefb0
commit 663a2c04be
1 changed files with 4 additions and 4 deletions

View File

@ -624,14 +624,14 @@ Result RestReplicationHandler::testPermissions() {
return Result(TRI_ERROR_HTTP_BAD_PARAMETER, return Result(TRI_ERROR_HTTP_BAD_PARAMETER,
"empty collection name"); "empty collection name");
} }
} else {
return Result(TRI_ERROR_HTTP_BAD_PARAMETER,
"invalid collection name type");
} }
} else { } else {
return Result(TRI_ERROR_HTTP_BAD_PARAMETER, return Result(TRI_ERROR_HTTP_BAD_PARAMETER,
"invalid collection name type"); "invalid collection parameter type");
} }
} else {
return Result(TRI_ERROR_HTTP_BAD_PARAMETER,
"invalid collection parameter type");
} }
} }
} }