Skip to content

Commit

Permalink
Correct order of arguments to handle_user_request. Closes liesen#6.
Browse files Browse the repository at this point in the history
  • Loading branch information
liesen committed Oct 2, 2011
1 parent 0434a9a commit bb68575
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion server.c
Expand Up @@ -778,7 +778,7 @@ static void handle_request(struct evhttp_request *request,
}

char *action = strtok(NULL, "/");
handle_user_request(request, username, action, session);
handle_user_request(request, action, username, session);
free(uri);
return;
}
Expand Down

0 comments on commit bb68575

Please sign in to comment.