diff options
| author | Russ White <russ@riw.us> | 2025-04-08 10:55:24 -0400 | 
|---|---|---|
| committer | GitHub <noreply@github.com> | 2025-04-08 10:55:24 -0400 | 
| commit | e9e9b2ba7e67f6993eae3c8d087a93545577b2fc (patch) | |
| tree | c636ad15d5674a99a816e40e66b36d9de2533988 | |
| parent | 9f59a2d05cbee28634245a889b64ff9ae3c4df93 (diff) | |
| parent | 16a0458dbcb3bd86c8a89b01434f94346b562464 (diff) | |
Merge pull request #18585 from zmw12306/babel-knownae
babel: fix incorrect check in known_ae()
| -rw-r--r-- | babeld/message.c | 2 | 
1 files changed, 1 insertions, 1 deletions
diff --git a/babeld/message.c b/babeld/message.c index b5027578d0..e4d3bf7d49 100644 --- a/babeld/message.c +++ b/babeld/message.c @@ -52,7 +52,7 @@ static const unsigned char tlv_min_length[MESSAGE_MAX + 1] =  static bool  known_ae(int ae)  { -    return ae <= 4; +    return ae <= 3;  }  /* Parse a network prefix, encoded in the somewhat baroque compressed  | 
