gnunet-svn
[Top][All Lists]
Advanced

[Date Prev][Date Next][Thread Prev][Thread Next][Date Index][Thread Index]

[GNUnet-SVN] [gnurl] 142/153: http2: Use correct format identifier for s


From: gnunet
Subject: [GNUnet-SVN] [gnurl] 142/153: http2: Use correct format identifier for stream_id
Date: Tue, 11 Sep 2018 12:53:33 +0200

This is an automated email from the git hooks/post-receive script.

ng0 pushed a commit to branch master
in repository gnurl.

commit 19ebc282172ff204648f350c6e716197d5b4d221
Author: Rikard Falkeborn <address@hidden>
AuthorDate: Sat Aug 25 21:15:47 2018 +0200

    http2: Use correct format identifier for stream_id
    
    Closes #2928
---
 lib/http2.c | 8 ++++----
 1 file changed, 4 insertions(+), 4 deletions(-)

diff --git a/lib/http2.c b/lib/http2.c
index 22655e94c..d76919300 100644
--- a/lib/http2.c
+++ b/lib/http2.c
@@ -575,7 +575,7 @@ static int push_promise(struct Curl_easy *data,
                                               frame->promised_stream_id,
                                               newhandle);
     if(rv) {
-      infof(data, "failed to set user_data for stream %u\n",
+      infof(data, "failed to set user_data for stream %d\n",
             frame->promised_stream_id);
       DEBUGASSERT(0);
       goto fail;
@@ -818,7 +818,7 @@ static int on_stream_close(nghttp2_session *session, 
int32_t stream_id,
     /* remove the entry from the hash as the stream is now gone */
     rv = nghttp2_session_set_stream_user_data(session, stream_id, 0);
     if(rv) {
-      infof(data_s, "http/2: failed to clear user_data for stream %u!\n",
+      infof(data_s, "http/2: failed to clear user_data for stream %d!\n",
             stream_id);
       DEBUGASSERT(0);
     }
@@ -1122,7 +1122,7 @@ void Curl_http2_done(struct connectdata *conn, bool 
premature)
     int rv = nghttp2_session_set_stream_user_data(httpc->h2,
                                                   http->stream_id, 0);
     if(rv) {
-      infof(data, "http/2: failed to clear user_data for stream %u!\n",
+      infof(data, "http/2: failed to clear user_data for stream %d!\n",
             http->stream_id);
       DEBUGASSERT(0);
     }
@@ -2132,7 +2132,7 @@ CURLcode Curl_http2_switched(struct connectdata *conn,
                                               stream->stream_id,
                                               data);
     if(rv) {
-      infof(data, "http/2: failed to set user_data for stream %u!\n",
+      infof(data, "http/2: failed to set user_data for stream %d!\n",
             stream->stream_id);
       DEBUGASSERT(0);
     }

-- 
To stop receiving notification emails like this one, please contact
address@hidden



reply via email to

[Prev in Thread] Current Thread [Next in Thread]