|
diff --git a/shared.c b/shared.c index b164d81..fb05427 100644 --- a/ shared.c+++ b/ shared.c |
|
@@ -42,24 +42,36 @@ char *cgit_querystring = NULL; |
42 | char *cgit_query_repo = NULL; |
42 | char *cgit_query_repo = NULL; |
43 | char *cgit_query_page = NULL; |
43 | char *cgit_query_page = NULL; |
44 | char *cgit_query_head = NULL; |
44 | char *cgit_query_head = NULL; |
45 | char *cgit_query_search = NULL; |
45 | char *cgit_query_search = NULL; |
46 | char *cgit_query_sha1 = NULL; |
46 | char *cgit_query_sha1 = NULL; |
47 | char *cgit_query_sha2 = NULL; |
47 | char *cgit_query_sha2 = NULL; |
48 | char *cgit_query_path = NULL; |
48 | char *cgit_query_path = NULL; |
49 | char *cgit_query_name = NULL; |
49 | char *cgit_query_name = NULL; |
50 | int cgit_query_ofs = 0; |
50 | int cgit_query_ofs = 0; |
51 | |
51 | |
52 | int htmlfd = 0; |
52 | int htmlfd = 0; |
53 | |
53 | |
| |
54 | |
| |
55 | int cgit_get_cmd_index(const char *cmd) |
| |
56 | { |
| |
57 | static char *cmds[] = {"log", "commit", "diff", "tree", "view", "blob", "snapshot", NULL}; |
| |
58 | int i; |
| |
59 | |
| |
60 | for(i = 0; cmds[i]; i++) |
| |
61 | if (!strcmp(cmd, cmds[i])) |
| |
62 | return i + 1; |
| |
63 | return 0; |
| |
64 | } |
| |
65 | |
54 | int chk_zero(int result, char *msg) |
66 | int chk_zero(int result, char *msg) |
55 | { |
67 | { |
56 | if (result != 0) |
68 | if (result != 0) |
57 | die("%s: %s", msg, strerror(errno)); |
69 | die("%s: %s", msg, strerror(errno)); |
58 | return result; |
70 | return result; |
59 | } |
71 | } |
60 | |
72 | |
61 | int chk_positive(int result, char *msg) |
73 | int chk_positive(int result, char *msg) |
62 | { |
74 | { |
63 | if (result <= 0) |
75 | if (result <= 0) |
64 | die("%s: %s", msg, strerror(errno)); |
76 | die("%s: %s", msg, strerror(errno)); |
65 | return result; |
77 | return result; |
|