Fix bug reported by Stig: per packet encapsulation for

pcapng is supported.

svn path=/trunk/; revision=28736
This commit is contained in:
Michael Tüxen 2009-06-15 12:55:42 +00:00
parent c4e626904c
commit 46ecce3d3d
1 changed files with 2 additions and 2 deletions

View File

@ -1594,9 +1594,9 @@ pcapng_dump_open(wtap_dumper *wdh, gboolean cant_seek _U_, int *err)
an error indication otherwise. */
int pcapng_dump_can_write_encap(int encap)
{
/* Per-packet encapsulations aren't supported. */
/* Per-packet encapsulations is supported. */
if (encap == WTAP_ENCAP_PER_PACKET)
return WTAP_ERR_ENCAP_PER_PACKET_UNSUPPORTED;
return 0;
/* Make sure we can figure out this DLT type */
if (wtap_wtap_encap_to_pcap_encap(encap) == -1)