]> git.puffer.fish Git - mirror/frr.git/commitdiff
* ospf_api.h: char isn't always signed, but it has to be it here.
authorhasso <hasso>
Sat, 19 Feb 2005 17:58:40 +0000 (17:58 +0000)
committerhasso <hasso>
Sat, 19 Feb 2005 17:58:40 +0000 (17:58 +0000)
Fixes bugzilla #153. [backport candidate]

ospfd/ChangeLog
ospfd/ospf_api.h

index 976847813bd1de39cdad23d2b7a3e81d7753c5b2..f67c33c1d21934b911d3fcd1a013a30c3b61fc7e 100644 (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
index e7867614ca733ca6cf369a19cd657213b8421002..77e1b23f937c64a1bac51fb6965a780e79c94efd 100644 (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)