From 30502cf64707267390870055cd74f4811f3a3828 Mon Sep 17 00:00:00 2001 From: Thadeu Lima de Souza Cascardo Date: Sun, 12 Oct 2008 22:47:17 -0300 Subject: [PATCH] Enumerate entries at the start of the program This is required to set the request mappings, so the frontend can identify the backend request needed to retrieve an entry. --- src/main.c | 1 + 1 file changed, 1 insertion(+) diff --git a/src/main.c b/src/main.c index 20ba70f..4368fb4 100644 --- a/src/main.c +++ b/src/main.c @@ -43,6 +43,7 @@ main (int argc, char **argv) g_message ("%s\n", atom_error_message (error)); exit (1); } + atom_backend_enumerate_entries (ctx, NULL, NULL, NULL); cgi_serve_request (ctx); atom_ctx_delete (ctx); return 0; -- 2.20.1