diff options
author | 2006-10-11 21:04:18 +0000 | |
---|---|---|
committer | 2006-10-11 21:04:18 +0000 | |
commit | 2738c30f5589915bb871209d6824c31027f5a5e8 (patch) | |
tree | 6e00ed991c25a306c4d802fed9ac909052106fb9 | |
parent | use SEEK_SET; chl@tuxfamily.org (diff) | |
download | wireguard-openbsd-2738c30f5589915bb871209d6824c31027f5a5e8.tar.xz wireguard-openbsd-2738c30f5589915bb871209d6824c31027f5a5e8.zip |
quotes around filename, pr 5253, sthen@zephyr.spacehopper.org
-rw-r--r-- | sbin/pfctl/parse.y | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/sbin/pfctl/parse.y b/sbin/pfctl/parse.y index d7d2b4ae5b2..6d959069014 100644 --- a/sbin/pfctl/parse.y +++ b/sbin/pfctl/parse.y @@ -1,4 +1,4 @@ -/* $OpenBSD: parse.y,v 1.506 2006/10/11 08:42:31 mcbride Exp $ */ +/* $OpenBSD: parse.y,v 1.507 2006/10/11 21:04:18 deraadt Exp $ */ /* * Copyright (c) 2001 Markus Friedl. All rights reserved. @@ -541,7 +541,7 @@ option : SET OPTIMIZATION STRING { } | SET FINGERPRINTS STRING { if (pf->opts & PF_OPT_VERBOSE) - printf("set fingerprints %s\n", $3); + printf("set fingerprints \"%s\"\n", $3); if (check_rulestate(PFCTL_STATE_OPTION)) { free($3); YYERROR; |