* ospf_api.h: char isn't always signed, but it has to be it here.

Fixes bugzilla #153. [backport candidate]
This commit is contained in:
hasso 2005-02-19 17:58:40 +00:00
parent c45eb839ae
commit 306541b316
2 changed files with 5 additions and 1 deletions

View File

@ -1,3 +1,7 @@
2005-02-19 Hasso Tepper <hasso at quagga.net>
* ospf_api.h: char isn't always signed, but it has to be it here.
2005-02-19 Paul Jakma <paul.jakma@sun.com>
* ospf_packet.c: (ospf_stream_copy) remove

View File

@ -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)