ソースを参照

Make pcap_inject non-static, so that its prototype doesn't conflict with

the real pcap_inject in the case where we do have it.
tags/v0.9.3
Michael Brown 19年前
コミット
9ea782d339
1個のファイルの変更1行の追加1行の削除
  1. 1
    1
      src/util/hijack.c

+ 1
- 1
src/util/hijack.c ファイルの表示

@@ -59,7 +59,7 @@ static void flag_signalled ( int signal __attribute__ (( unused )) ) {
59 59
  * have it.  Will almost certainly only work under Linux.
60 60
  *
61 61
  */
62
-static int pcap_inject ( pcap_t *pcap, const void *data, size_t len ) {
62
+int pcap_inject ( pcap_t *pcap, const void *data, size_t len ) {
63 63
 	int fd;
64 64
 	char *errbuf = pcap_geterr ( pcap );
65 65
 

読み込み中…
キャンセル
保存