summaryrefslogtreecommitdiffstats
path: root/extensions/libxt_osf.c
diff options
context:
space:
mode:
Diffstat (limited to 'extensions/libxt_osf.c')
-rw-r--r--extensions/libxt_osf.c4
1 files changed, 2 insertions, 2 deletions
diff --git a/extensions/libxt_osf.c b/extensions/libxt_osf.c
index 38c4705e..a97884b9 100644
--- a/extensions/libxt_osf.c
+++ b/extensions/libxt_osf.c
@@ -123,14 +123,14 @@ static void osf_print(const void *ip, const struct xt_entry_match *match, int nu
{
const struct xt_osf_info *info = (const struct xt_osf_info*) match->data;
- printf("OS fingerprint match %s%s ", (info->flags & XT_OSF_INVERT) ? "! " : "", info->genre);
+ printf(" OS fingerprint match %s%s", (info->flags & XT_OSF_INVERT) ? "! " : "", info->genre);
}
static void osf_save(const void *ip, const struct xt_entry_match *match)
{
const struct xt_osf_info *info = (const struct xt_osf_info*) match->data;
- printf("--genre %s%s ", (info->flags & XT_OSF_INVERT) ? "! ": "", info->genre);
+ printf(" --genre %s%s", (info->flags & XT_OSF_INVERT) ? "! ": "", info->genre);
}
static struct xtables_match osf_match = {