aboutsummaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorache <ache@FreeBSD.org>1998-11-02 16:54:49 +0800
committerache <ache@FreeBSD.org>1998-11-02 16:54:49 +0800
commit65100422c37dd954cc3a332e3218d2f7d98b311e (patch)
tree7624acf64b7f16466358071a8d3f9ca540d7a290
parent7e99da31b4ddb12a7eaaa0c72c897d142f0d5ece (diff)
downloadfreebsd-ports-graphics-65100422c37dd954cc3a332e3218d2f7d98b311e.tar.gz
freebsd-ports-graphics-65100422c37dd954cc3a332e3218d2f7d98b311e.tar.zst
freebsd-ports-graphics-65100422c37dd954cc3a332e3218d2f7d98b311e.zip
typo
-rw-r--r--www/webglimpse/files/patch-af2
1 files changed, 1 insertions, 1 deletions
diff --git a/www/webglimpse/files/patch-af b/www/webglimpse/files/patch-af
index e5952dd2003..df2cdd92f8d 100644
--- a/www/webglimpse/files/patch-af
+++ b/www/webglimpse/files/patch-af
@@ -22,7 +22,7 @@
# if the protocol isn't http, assume it's good
- if($prot!~/http/i){
-+ if(defined($prot) && $prot!~/http/i){
++ if(!defined($prot) || $prot!~/http/i){
return 1;
}