From: hasso Date: Sat, 19 Feb 2005 17:58:40 +0000 (+0000) Subject: * ospf_api.h: char isn't always signed, but it has to be it here. X-Git-Tag: frr-2.0-rc1~3174 X-Git-Url: https://git.puffer.fish/?a=commitdiff_plain;h=306541b31624a344db085bfee45e5d9343fc8dca;p=mirror%2Ffrr.git * ospf_api.h: char isn't always signed, but it has to be it here. Fixes bugzilla #153. [backport candidate] --- diff --git a/ospfd/ChangeLog b/ospfd/ChangeLog index 976847813b..f67c33c1d2 100644 --- a/ospfd/ChangeLog +++ b/ospfd/ChangeLog @@ -1,3 +1,7 @@ +2005-02-19 Hasso Tepper + + * ospf_api.h: char isn't always signed, but it has to be it here. + 2005-02-19 Paul Jakma * ospf_packet.c: (ospf_stream_copy) remove diff --git a/ospfd/ospf_api.h b/ospfd/ospf_api.h index e7867614ca..77e1b23f93 100644 --- a/ospfd/ospf_api.h +++ b/ospfd/ospf_api.h @@ -205,7 +205,7 @@ struct msg_delete_request struct msg_reply { - char errcode; + signed char errcode; #define OSPF_API_OK 0 #define OSPF_API_NOSUCHINTERFACE (-1) #define OSPF_API_NOSUCHAREA (-2)