Unidiff1 files changed, 1 insertions, 1 deletions
|
diff --git a/shared.c b/shared.c index ff600db..7eb2b0e 100644 --- a/ shared.c+++ b/ shared.c |
|
@@ -63,13 +63,13 @@ int cgit_query_ofs = 0; |
63 | int htmlfd = 0; |
63 | int htmlfd = 0; |
64 | |
64 | |
65 | |
65 | |
66 | int cgit_get_cmd_index(const char *cmd) |
66 | int cgit_get_cmd_index(const char *cmd) |
67 | { |
67 | { |
68 | static char *cmds[] = {"log", "commit", "diff", "tree", "blob", |
68 | static char *cmds[] = {"log", "commit", "diff", "tree", "blob", |
69 | "snapshot", "tag", NULL}; |
69 | "snapshot", "tag", "refs", NULL}; |
70 | int i; |
70 | int i; |
71 | |
71 | |
72 | for(i = 0; cmds[i]; i++) |
72 | for(i = 0; cmds[i]; i++) |
73 | if (!strcmp(cmd, cmds[i])) |
73 | if (!strcmp(cmd, cmds[i])) |
74 | return i + 1; |
74 | return i + 1; |
75 | return 0; |
75 | return 0; |
|