diff options
| author | Dmitry Antipov <dmantipov@yandex.ru> | 2020-08-10 11:45:58 +0300 |
|---|---|---|
| committer | Amar Tumballi <amar@kadalu.io> | 2020-08-17 11:27:09 +0000 |
| commit | 9978ceb26327de9545c6e0a4f9230b401e629793 (patch) | |
| tree | 19468386ccc3f04bfc7a059d6de5710cfd1e88fd /xlators/features/cloudsync/src | |
| parent | 005d2ac1d8cc57e0e36f7cf230ae09a4f860bd16 (diff) | |
libglusterfs: add library wrapper for time()
Add thin convenient library wrapper gf_time(),
adjust related users and comments as well.
Change-Id: If8969af2f45ee69c30c3406bce5baa8305fb7f80
Signed-off-by: Dmitry Antipov <dmantipov@yandex.ru>
Updates: #1002
Diffstat (limited to 'xlators/features/cloudsync/src')
| -rw-r--r-- | xlators/features/cloudsync/src/cloudsync-plugins/src/cloudsyncs3/src/libcloudsyncs3.c | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/xlators/features/cloudsync/src/cloudsync-plugins/src/cloudsyncs3/src/libcloudsyncs3.c b/xlators/features/cloudsync/src/cloudsync-plugins/src/cloudsyncs3/src/libcloudsyncs3.c index 7680260988b..23c3599825a 100644 --- a/xlators/features/cloudsync/src/cloudsync-plugins/src/cloudsyncs3/src/libcloudsyncs3.c +++ b/xlators/features/cloudsync/src/cloudsync-plugins/src/cloudsyncs3/src/libcloudsyncs3.c @@ -237,7 +237,7 @@ aws_form_request(char *resource, char **date, char *reqtype, char *bucketid, int date_len = -1; int res_len = -1; - ctime = time(NULL); + ctime = gf_time(); gtime = gmtime(&ctime); date_len = strftime(httpdate, sizeof(httpdate), |
