diff options
Diffstat (limited to 'slirp/debug.c')
-rw-r--r-- | slirp/debug.c | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/slirp/debug.c b/slirp/debug.c index 77d5044525..7c8581d631 100644 --- a/slirp/debug.c +++ b/slirp/debug.c @@ -92,9 +92,9 @@ ttystats(ttyp) lprint(" \r\n"); - if (if_comp & IF_COMPRESS) + if (IF_COMP & IF_COMPRESS) strcpy(buff, "on"); - else if (if_comp & IF_NOCOMPRESS) + else if (IF_COMP & IF_NOCOMPRESS) strcpy(buff, "off"); else strcpy(buff, "off (for now)"); |