diff options
author | Ben Straub <bstraub@github.com> | 2012-06-06 13:24:25 -0700 |
---|---|---|
committer | Ben Straub <bstraub@github.com> | 2012-06-06 13:24:25 -0700 |
commit | 9ecf860d48b39241a2dce61dd33455816064d56b (patch) | |
tree | ee4665b2ef70ce2412b73f0a4692de2e769427ba /src/signature.c | |
parent | 1a728066c3b307a71c04f746bb6f322dacd50938 (diff) | |
download | libgit2-9ecf860d48b39241a2dce61dd33455816064d56b.tar.gz |
Rename posix wrappers with 'p_' prefix.
Diffstat (limited to 'src/signature.c')
-rw-r--r-- | src/signature.c | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/src/signature.c b/src/signature.c index 6b28a3e4c..332bdf65f 100644 --- a/src/signature.c +++ b/src/signature.c @@ -119,8 +119,8 @@ int git_signature_now(git_signature **sig_out, const char *name, const char *ema time(&now); - utc_tm = gmtime_r(&now, &_utc); - local_tm = localtime_r(&now, &_local); + utc_tm = p_gmtime_r(&now, &_utc); + local_tm = p_localtime_r(&now, &_local); offset = mktime(local_tm) - mktime(utc_tm); offset /= 60; |