Changeset - 5818b237a2d2
[Not reviewed]
0 1 0
Jan Kaluza - 10 years ago 2016-01-07 21:58:14
jkaluza@redhat.com
Fix has_prefix call
1 file changed with 1 insertions and 1 deletions:
0 comments (0 inline, 0 general)
spectrum_manager/src/server.cpp
Show inline comments
 
@@ -699,7 +699,7 @@ void Server::event_handler(struct mg_connection *conn, int ev, void *p) {
 
		serve_users_add(conn, hm);
 
	} else if (mg_vcmp(&hm->uri, "/users/remove") == 0) {
 
		serve_users_remove(conn, hm);
 
	} else if (has_prefix(&hm->uri, "/oauth2") == 0) {
 
	} else if (has_prefix(&hm->uri, "/oauth2")) {
 
		serve_oauth2(conn, hm);
 
	} else {
 
		mg_serve_http(conn, hm, s_http_server_opts);
0 comments (0 inline, 0 general)