summaryrefslogtreecommitdiffabout
path: root/shared.c
Unidiff
Diffstat (limited to 'shared.c') (more/less context) (show whitespace changes)
-rw-r--r--shared.c3
1 files changed, 2 insertions, 1 deletions
diff --git a/shared.c b/shared.c
index b6d2fa1..c7cd8a5 100644
--- a/shared.c
+++ b/shared.c
@@ -56,13 +56,14 @@ int cgit_query_ofs = 0;
56 56
57int htmlfd = 0; 57int htmlfd = 0;
58 58
59 59
60int cgit_get_cmd_index(const char *cmd) 60int cgit_get_cmd_index(const char *cmd)
61{ 61{
62 static char *cmds[] = {"log", "commit", "diff", "tree", "view", "blob", "snapshot", NULL}; 62 static char *cmds[] = {"log", "commit", "diff", "tree", "blob",
63 "snapshot", NULL};
63 int i; 64 int i;
64 65
65 for(i = 0; cmds[i]; i++) 66 for(i = 0; cmds[i]; i++)
66 if (!strcmp(cmd, cmds[i])) 67 if (!strcmp(cmd, cmds[i]))
67 return i + 1; 68 return i + 1;
68 return 0; 69 return 0;