diff options
author | Olivier Le Thanh Duong <olivier.le.thanh@collabora.co.uk> | 2009-10-05 19:10:25 +0200 |
---|---|---|
committer | Denis Kenzior <denkenz@gmail.com> | 2009-10-21 19:04:47 -0500 |
commit | 6d9bd02480a575615b0294a748e345cdeb5fbaec (patch) | |
tree | e3af7f29a08daaeb2e0386cb7daad575622e0701 /src/voicecall.c | |
parent | 1b13ce308f0aabefa2da63ac77c6035948d6b4d1 (diff) | |
download | ofono-6d9bd02480a575615b0294a748e345cdeb5fbaec.tar.bz2 |
Migrate from RFC2822 to ISO8601
Diffstat (limited to 'src/voicecall.c')
-rw-r--r-- | src/voicecall.c | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/src/voicecall.c b/src/voicecall.c index ef4c171a..a50bb661 100644 --- a/src/voicecall.c +++ b/src/voicecall.c @@ -164,7 +164,7 @@ static const char *time_to_str(const time_t *t) { static char buf[128]; - strftime(buf, 127, "%a, %d %b %Y %H:%M:%S %z", localtime(t)); + strftime(buf, 127, "%Y-%m-%dT%H:%M:%S%z", localtime(t)); buf[127] = '\0'; return buf; |