You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.

22 lines
472 B

  1. --- a/src/racoon/cftoken.l
  2. +++ b/src/racoon/cftoken.l
  3. @@ -104,6 +104,8 @@ static struct include_stack {
  4. static int incstackp = 0;
  5. static int yy_first_time = 1;
  6. +
  7. +int yywrap(void) { return 1; }
  8. %}
  9. /* common seciton */
  10. --- a/src/setkey/token.l
  11. +++ b/src/setkey/token.l
  12. @@ -86,6 +86,8 @@
  13. #if defined(SADB_X_EALG_AES) && ! defined(SADB_X_EALG_AESCBC)
  14. #define SADB_X_EALG_AESCBC SADB_X_EALG_AES
  15. #endif
  16. +
  17. +int yywrap(void) { return 1; }
  18. %}
  19. /* common section */