diff options
| author | Tobias Brunner <tobias@strongswan.org> | 2009-03-12 18:07:32 +0000 |
|---|---|---|
| committer | Tobias Brunner <tobias@strongswan.org> | 2009-03-12 18:07:32 +0000 |
| commit | d25ce3701e066121d2026b0dfd72a794f3bbee29 (patch) | |
| tree | aa4833262e49963746a430d2a07381986395aae4 /src/charon/plugins/sql | |
| parent | 9086102dfd4a9fe654af922d00bc5e5238547f21 (diff) | |
| download | strongswan-d25ce3701e066121d2026b0dfd72a794f3bbee29.tar.bz2 strongswan-d25ce3701e066121d2026b0dfd72a794f3bbee29.tar.xz | |
printf hooks refactored to increase portability (i.e. support for platforms without glibc-compatible customizable printf - the Vstr string library is currently required on such platforms).
Diffstat (limited to 'src/charon/plugins/sql')
| -rw-r--r-- | src/charon/plugins/sql/pool.c | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/src/charon/plugins/sql/pool.c b/src/charon/plugins/sql/pool.c index 8f5dc54dd..9761e88e9 100644 --- a/src/charon/plugins/sql/pool.c +++ b/src/charon/plugins/sql/pool.c @@ -554,10 +554,10 @@ static void leases(char *filter, bool utc) printf("%-7s ", "expired"); } - printf(" %#T ", &acquired, utc); + printf(" %T ", &acquired, utc); if (released) { - printf("%#T ", &released, utc); + printf("%T ", &released, utc); } else { |
