Merge pull request #16233 from T-Nicolas/patch-1

ripd/ripd.c - rip_auth_md5 : Change the start value of sequence 1 to 0
This commit is contained in:
Donatas Abraitis 2024-07-01 19:36:57 +02:00 committed by GitHub
commit 09959645a3
No known key found for this signature in database
GPG Key ID: B5690EEEBB952194

View File

@ -1051,7 +1051,7 @@ static size_t rip_auth_md5_ah_write(struct stream *s, struct rip_interface *ri,
/* RFC2080: The value used in the sequence number is /* RFC2080: The value used in the sequence number is
arbitrary, but two suggestions are the time of the arbitrary, but two suggestions are the time of the
message's creation or a simple message counter. */ message's creation or a simple message counter. */
stream_putl(s, ++seq); stream_putl(s, seq++);
/* Reserved field must be zero. */ /* Reserved field must be zero. */
stream_putl(s, 0); stream_putl(s, 0);