remote: Assert proper GIT_DIRECTION_XXXX values
diff --git a/src/remote.c b/src/remote.c
index 7677e56..14ed740 100644
--- a/src/remote.c
+++ b/src/remote.c
@@ -534,6 +534,8 @@ const char* git_remote__urlfordirection(git_remote *remote, int direction)
{
assert(remote);
+ assert(direction == GIT_DIRECTION_FETCH || direction == GIT_DIRECTION_PUSH);
+
if (direction == GIT_DIRECTION_FETCH) {
return remote->url;
}