From d9f3b66bbf61a5f67b0e1fd8a26d72ec848acb7c Mon Sep 17 00:00:00 2001 From: Mark Pizzolato Date: Sat, 26 Nov 2011 06:42:13 -0800 Subject: [PATCH] Fixed line endings to be consistent in dynamically loaded pcap_fileno implementation --- sim_ether.c | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/sim_ether.c b/sim_ether.c index ebcaa0bb..e428360c 100644 --- a/sim_ether.c +++ b/sim_ether.c @@ -1057,13 +1057,13 @@ int pcap_get_selectable_fd(pcap_t* a) { } } -int pcap_fileno(pcap_t * a) { +int pcap_fileno(pcap_t * a) { if (load_pcap() != 0) { return p_pcap_fileno(a); } else { return 0; } -} +} #endif int pcap_sendpacket(pcap_t* a, const u_char* b, int c) {