]> git.puffer.fish Git - matthieu/frr.git/commitdiff
[lib/stream] small compile fix, use uint64_t, not u_int64_t.
authorpaul <paul>
Thu, 19 Jan 2006 20:22:16 +0000 (20:22 +0000)
committerpaul <paul>
Thu, 19 Jan 2006 20:22:16 +0000 (20:22 +0000)
2006-01-19 Paul Jakma <paul.jakma@sun.com>

* stream.c: (stream_getq_from) should use POSIX uint64_t
  not u_int64_t. Latter is neither a traditional BSD type, nor
  a POSIX type.

lib/ChangeLog
lib/stream.c

index aae83dcb7ff248c26ebe568bcdfd1ef75ca1c541..600ffef7fc9a08cfd98c493d803c7dd5c6a2504c 100644 (file)
@@ -1,3 +1,9 @@
+2006-01-19 Paul Jakma <paul.jakma@sun.com>
+
+       * stream.c: (stream_getq_from) should use POSIX uint64_t
+         not u_int64_t. Latter is neither a traditional BSD type, nor
+         a POSIX type.
+
 2006-01-17 Vincent Jardin <vincent.jardin@6wind.com>
 
        * md5.c: Don't forget to keep const.
index 4c5c44ad3aa4fb99a38468d3db68902667f72109..7034d9040c2b409b6900e4f0539b43d717137cdf 100644 (file)
@@ -383,7 +383,7 @@ stream_getl (struct stream *s)
 uint64_t
 stream_getq_from (struct stream *s, size_t from)
 {
-  u_int64_t q;
+  uint64_t q;
 
   STREAM_VERIFY_SANE(s);