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.

14 lines
401 B

  1. Description: Fixes declaration of global variable
  2. Author: Marcio de Souza Oliveira <marciosouza@debian.org>
  3. Last-Update: 2020-09-02
  4. --- a/hping2.h
  5. +++ b/hping2.h
  6. @@ -357,7 +357,7 @@ struct delaytable_element {
  7. int status;
  8. };
  9. -volatile struct delaytable_element delaytable[TABLESIZE];
  10. +extern volatile struct delaytable_element delaytable[TABLESIZE];
  11. /* protos */
  12. void nop(void); /* nop */