Fix a build breaker. g_filename_to_uri takes 3 arguments.

2005-12-23  Harish Krishnaswamy  <kharish@novell.com>

* conduits/calendar/calendar-conduit.c
(calconduit_load_configuration): Fix a build breaker.
g_filename_to_uri takes 3 arguments.

svn path=/trunk/; revision=30942
This commit is contained in:
Harish Krishnaswamy
2005-12-23 04:39:34 +00:00
committed by Harish Krishnaswamy
parent 4f2de6eca9
commit ed79409393
2 changed files with 7 additions and 1 deletions

View File

@ -1,3 +1,9 @@
2005-12-23 Harish Krishnaswamy <kharish@novell.com>
* conduits/calendar/calendar-conduit.c
(calconduit_load_configuration): Fix a build breaker.
g_filename_to_uri takes 3 arguments.
2005-12-21 Chenthill Palanisamy <pchenthill@novell.com>
Fixes #306150

View File

@ -168,7 +168,7 @@ calconduit_load_configuration (guint32 pilot_id)
NULL);
/* need to upgrade the last_uri. yay. */
g_free (c->last_uri);
c->last_uri = g_filename_to_uri (new_filename);
c->last_uri = g_filename_to_uri (new_filename, NULL, NULL);
g_free (new_filename);
}
}