diff options
author | hasso <hasso> | 2005-02-19 17:58:40 +0000 |
---|---|---|
committer | hasso <hasso> | 2005-02-19 17:58:40 +0000 |
commit | 59bbe0ee1e8b3c7de488706e91ff8ae81901b4d3 (patch) | |
tree | a8b8322f9278a3dc1a4b09899e223cd04b5e5568 /ospfd/ospf_api.h | |
parent | b3da91f8aa2fec61dabe89484fba32031e906aa2 (diff) | |
download | quagga-59bbe0ee1e8b3c7de488706e91ff8ae81901b4d3.tar.bz2 quagga-59bbe0ee1e8b3c7de488706e91ff8ae81901b4d3.tar.xz |
* ospf_api.h: char isn't always signed, but it has to be it here.
Fixes bugzilla #153. [backport candidate]
Diffstat (limited to 'ospfd/ospf_api.h')
-rw-r--r-- | ospfd/ospf_api.h | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/ospfd/ospf_api.h b/ospfd/ospf_api.h index e7867614..77e1b23f 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) |