Compare commits

..

No commits in common. '73c7a9db45c9d6772bcebd391a3ddd7c8c166c34' and '8fdac02a42b92e06679f32f0cd1b1a22dfac8967' have entirely different histories.

  1. 2
      c/app.c
  2. 2
      config.mk

2
c/app.c

@ -57,7 +57,7 @@ static rpd_route *routes_fabric(rpd_app *app, rpd_req *req)
continue; continue;
int match = 1; int match = 1;
for (int j = 1; j < route_path->parts_len && match; j++) { for (int j = 0; j < route_path->parts_len && match; j++) {
int cur_part_is_dyn = route_path->parts[i][0] == ':'; int cur_part_is_dyn = route_path->parts[i][0] == ':';
if (!cur_part_is_dyn && strcmp(req_path->parts[i], route_path->parts[i])) { if (!cur_part_is_dyn && strcmp(req_path->parts[i], route_path->parts[i])) {
match = 0; match = 0;

2
config.mk

@ -1,4 +1,4 @@
VERSION=0.4.1 VERSION=0.4
#arg Installation prefix #arg Installation prefix
PREFIX=/usr/local PREFIX=/usr/local

Loading…
Cancel
Save