From: Thadeu Lima de Souza Cascardo Date: Sun, 10 Aug 2008 05:18:41 +0000 (-0300) Subject: GIO is the default backend for sample main program X-Git-Url: http://git.cascardo.eti.br/?p=cascardo%2Fatompub.git;a=commitdiff_plain;h=94faf077179fbf2fbeaf0a880a22b57c5b4b20a2 GIO is the default backend for sample main program --- diff --git a/src/main.c b/src/main.c index 673c702..3ae1815 100644 --- a/src/main.c +++ b/src/main.c @@ -24,7 +24,7 @@ #include extern void cgi_serve_request (AtomCtx *ctx); -extern AtomBackend * giochannel_backend (void); +extern AtomBackend * gio_backend (void); int main (int argc, char **argv) @@ -35,7 +35,7 @@ main (int argc, char **argv) g_type_init (); ctx = atom_ctx_new (); atom_config_init (ctx); - atom_backend_set (ctx, giochannel_backend ()); + atom_backend_set (ctx, gio_backend ()); if ((error = atom_error_get (ctx)) != NULL) { g_message ("%s\n", atom_error_message (error));