gnunet-svn
[Top][All Lists]
Advanced

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

[gnurl] 30/411: doh: add error message for DOH_DNS_NAME_TOO_LONG


From: gnunet
Subject: [gnurl] 30/411: doh: add error message for DOH_DNS_NAME_TOO_LONG
Date: Wed, 13 Jan 2021 01:17:25 +0100

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

nikita pushed a commit to branch master
in repository gnurl.

commit a6a17662f22d1b00f89295086ea71ac73700f477
Author: Emil Engler <me@emilengler.com>
AuthorDate: Wed Aug 26 13:33:42 2020 +0200

    doh: add error message for DOH_DNS_NAME_TOO_LONG
    
    When this error code was introduced in b6a53fff6c1d07e8a9, it was
    forgotten to be added in the errors array and doh_strerror function.
    
    Closes #5863
---
 lib/doh.c | 5 +++--
 1 file changed, 3 insertions(+), 2 deletions(-)

diff --git a/lib/doh.c b/lib/doh.c
index 8bc3428ff..31c243883 100644
--- a/lib/doh.c
+++ b/lib/doh.c
@@ -57,12 +57,13 @@ static const char * const errors[]={
   "Unexpected TYPE",
   "Unexpected CLASS",
   "No content",
-  "Bad ID"
+  "Bad ID",
+  "Name too long"
 };
 
 static const char *doh_strerror(DOHcode code)
 {
-  if((code >= DOH_OK) && (code <= DOH_DNS_BAD_ID))
+  if((code >= DOH_OK) && (code <= DOH_DNS_NAME_TOO_LONG))
     return errors[code];
   return "bad error code";
 }

-- 
To stop receiving notification emails like this one, please contact
gnunet@gnunet.org.



reply via email to

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