1
0
mirror of https://git.FreeBSD.org/src.git synced 2024-12-12 09:58:36 +00:00

Use is '-' to imply that the flag is not set, rather than '.'.

This commit is contained in:
Christian S.J. Peron 2005-09-15 16:09:24 +00:00
parent f93d36fd92
commit 8729849a45
Notes: svn2git 2020-12-20 02:59:44 +00:00
svn path=/head/; revision=150168

View File

@ -75,7 +75,7 @@ bpf_flags(struct xbpf_d *bd, char *flagbuf)
*flagbuf++ = bd->bd_promisc ? 'p' : '-';
*flagbuf++ = bd->bd_immediate ? 'i' : '-';
*flagbuf++ = bd->bd_hdrcmplt ? '-' : 'f';
*flagbuf++ = bd->bd_seesent ? 's' : '.';
*flagbuf++ = bd->bd_seesent ? 's' : '-';
*flagbuf++ = bd->bd_async ? 'a' : '-';
*flagbuf++ = bd->bd_locked ? 'l' : '-';
*flagbuf++ = '\0';