diff options
author | uqs <uqs@FreeBSD.org> | 2011-02-01 04:17:04 +0800 |
---|---|---|
committer | uqs <uqs@FreeBSD.org> | 2011-02-01 04:17:04 +0800 |
commit | e336411eacdd54835d7c3a839990a4559c0e981b (patch) | |
tree | 63812449cd93a5d7c02d4720a92b1b8c3a15b2d5 /ports-mgmt | |
parent | 80065cf53d2151feaefd002a339efa445d18f42d (diff) | |
download | freebsd-ports-gnome-e336411eacdd54835d7c3a839990a4559c0e981b.tar.gz freebsd-ports-gnome-e336411eacdd54835d7c3a839990a4559c0e981b.tar.zst freebsd-ports-gnome-e336411eacdd54835d7c3a839990a4559c0e981b.zip |
Don't enclose URLs in <>, it makes them harder to copy&paste and URLs are
not email addresses.
PR: ports/127214 (first half)
Reviewed by: simon
Feature safe: yes
Diffstat (limited to 'ports-mgmt')
-rw-r--r-- | ports-mgmt/portaudit/Makefile | 2 | ||||
-rw-r--r-- | ports-mgmt/portaudit/files/portaudit-cmd.sh | 4 |
2 files changed, 3 insertions, 3 deletions
diff --git a/ports-mgmt/portaudit/Makefile b/ports-mgmt/portaudit/Makefile index 62acf3903c78..9cd56096b824 100644 --- a/ports-mgmt/portaudit/Makefile +++ b/ports-mgmt/portaudit/Makefile @@ -6,7 +6,7 @@ # PORTNAME= portaudit -PORTVERSION= 0.5.15 +PORTVERSION= 0.5.16 CATEGORIES= ports-mgmt security DISTFILES= diff --git a/ports-mgmt/portaudit/files/portaudit-cmd.sh b/ports-mgmt/portaudit/files/portaudit-cmd.sh index bbc8ada76efd..b5c71f49fcf2 100644 --- a/ports-mgmt/portaudit/files/portaudit-cmd.sh +++ b/ports-mgmt/portaudit/files/portaudit-cmd.sh @@ -440,7 +440,7 @@ elif $opt_verbose; then print "Type of problem: " $3 "." split($2, ref, / /) for (r in ref) - print "Reference: <" ref[r] ">" + print "Reference: " ref[r] if (note) print "Note: " note print "" @@ -454,7 +454,7 @@ else print "Type of problem: " $3 "." split($2, ref, / /) for (r in ref) - print "Reference: <" ref[r] ">" + print "Reference: " ref[r] if (note) print "Note: " note print "" |