commit | 306541b31624a344db085bfee45e5d9343fc8dca | [log] [tgz] |
---|---|---|
author | hasso <hasso> | Sat Feb 19 17:58:40 2005 +0000 |
committer | hasso <hasso> | Sat Feb 19 17:58:40 2005 +0000 |
tree | 1f57f3f14b7463596acb95728a4185aa72899133 | |
parent | c45eb839ae2aac88372180fda8ce90dc1abefe2f [diff] [blame] |
* ospf_api.h: char isn't always signed, but it has to be it here. Fixes bugzilla #153. [backport candidate]
diff --git a/ospfd/ospf_api.h b/ospfd/ospf_api.h index e786761..77e1b23 100644 --- a/ospfd/ospf_api.h +++ b/ospfd/ospf_api.h
@@ -205,7 +205,7 @@ struct msg_reply { - char errcode; + signed char errcode; #define OSPF_API_OK 0 #define OSPF_API_NOSUCHINTERFACE (-1) #define OSPF_API_NOSUCHAREA (-2)