summaryrefslogtreecommitdiff
path: root/www/webglimpse
diff options
context:
space:
mode:
authorAndrey A. Chernov <ache@FreeBSD.org>1998-11-02 08:54:49 +0000
committerAndrey A. Chernov <ache@FreeBSD.org>1998-11-02 08:54:49 +0000
commit9b15f3eb3b242b3afff6b781f1b4700165486c0a (patch)
treebcce91cce5b7ea9b1c3c2cde35607aa7ca198feb /www/webglimpse
parentprevent redirection loop and indexing error pages (diff)
typo
Notes
Notes: svn path=/head/; revision=14305
Diffstat (limited to 'www/webglimpse')
-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 e5952dd20037..df2cdd92f8d0 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;
}