]> granicus.if.org Git - curl/commitdiff
examples/http2-upload: expand buffer to avoid silly warning
authorDaniel Stenberg <daniel@haxx.se>
Tue, 24 Apr 2018 12:14:23 +0000 (14:14 +0200)
committerDaniel Stenberg <daniel@haxx.se>
Tue, 24 Apr 2018 12:14:23 +0000 (14:14 +0200)
http2-upload.c:135:44: error: ā€˜%02dā€™ directive output may be truncated
writing between 2 and 11 bytes into a region of size between 8 and 17

docs/examples/http2-upload.c

index d7aa320ed6d7926718bfaf9ffcb139f02fcd4e0f..2a08b89db0fafa2f354f20e8b1ab6f52ce563d70 100644 (file)
@@ -5,7 +5,7 @@
  *                            | (__| |_| |  _ <| |___
  *                             \___|\___/|_| \_\_____|
  *
- * Copyright (C) 1998 - 2017, Daniel Stenberg, <daniel@haxx.se>, et al.
+ * Copyright (C) 1998 - 2018, Daniel Stenberg, <daniel@haxx.se>, et al.
  *
  * This software is licensed as described in the file COPYING, which
  * you should have received as part of this distribution. The terms
@@ -113,7 +113,7 @@ int my_trace(CURL *handle, curl_infotype type,
              char *data, size_t size,
              void *userp)
 {
-  char timebuf[20];
+  char timebuf[60];
   const char *text;
   int num = hnd2num(handle);
   static time_t epoch_offset;