summaryrefslogtreecommitdiff
path: root/telepathy-logger/log-store-sqlite.c
diff options
context:
space:
mode:
authorSimon McVittie <simon.mcvittie@collabora.co.uk>2010-04-19 19:20:44 +0100
committerSimon McVittie <simon.mcvittie@collabora.co.uk>2010-04-23 14:27:00 +0100
commitc30cf7d603b57ffe8a789ec552e808a4027d81dd (patch)
tree2627dbdb05b9e15b98d7ad2f162b63cb1e9547e8 /telepathy-logger/log-store-sqlite.c
parent83ca82a5b38d31cefce83fad1390dd627fcd9a8a (diff)
downloadtelepathy-logger-c30cf7d603b57ffe8a789ec552e808a4027d81dd.tar.gz
Internalize datetime code
Diffstat (limited to 'telepathy-logger/log-store-sqlite.c')
-rw-r--r--telepathy-logger/log-store-sqlite.c12
1 files changed, 6 insertions, 6 deletions
diff --git a/telepathy-logger/log-store-sqlite.c b/telepathy-logger/log-store-sqlite.c
index e35cb41..aaa5139 100644
--- a/telepathy-logger/log-store-sqlite.c
+++ b/telepathy-logger/log-store-sqlite.c
@@ -29,9 +29,9 @@
#include "log-entry-text.h"
#include "log-store-sqlite.h"
-#include "datetime.h"
#define DEBUG_FLAG TPL_DEBUG_LOG_STORE
+#include "datetime-internal.h"
#include "debug-internal.h"
#include "util-internal.h"
@@ -291,7 +291,7 @@ get_date (TplLogEntry *entry)
t = tpl_log_entry_get_timestamp (entry);
- return tpl_time_to_string_utc (t, "%Y-%m-%d");
+ return _tpl_time_to_string_utc (t, "%Y-%m-%d");
}
static char *
@@ -301,7 +301,7 @@ get_datetime (TplLogEntry *entry)
t = tpl_log_entry_get_timestamp (entry);
- return tpl_time_to_string_utc (t, TPL_LOG_STORE_SQLITE_TIMESTAMP_FORMAT);
+ return _tpl_time_to_string_utc (t, TPL_LOG_STORE_SQLITE_TIMESTAMP_FORMAT);
}
static const char *
@@ -792,7 +792,7 @@ out:
* older than this value (time_t). Set it to %G_MAXUINT or any other value in
* the future to obtain all the entries.
* For example, to obtain entries older than one day ago, use
- * @timestamp = (#tpl_time_get_current()-86400)
+ * @timestamp = (#_tpl_time_get_current()-86400)
*
* Note that (in case @channel is not %NULL) this method might return log-ids
* which are not currently related to @channel but just share the object-path,
@@ -839,7 +839,7 @@ tpl_log_store_sqlite_get_log_ids (TplLogStore *self,
goto out;
}
- date = tpl_time_to_string_utc (timestamp,
+ date = _tpl_time_to_string_utc (timestamp,
TPL_LOG_STORE_SQLITE_TIMESTAMP_FORMAT);
sqlite3_bind_text (sql, 1, date, -1, SQLITE_TRANSIENT);
@@ -1060,7 +1060,7 @@ tpl_log_store_sqlite_purge (TplLogStoreSqlite *self,
g_return_if_fail (error == NULL || *error == NULL);
g_return_if_fail (TPL_IS_LOG_STORE_SQLITE (self));
- date = tpl_time_to_string_utc ((tpl_time_get_current () - delta),
+ date = _tpl_time_to_string_utc ((_tpl_time_get_current () - delta),
TPL_LOG_STORE_SQLITE_TIMESTAMP_FORMAT);
DEBUG ("Purging entries older than %s (%u seconds ago)", date, (guint) delta);