diff options
author | Andrey A. Chernov <ache@FreeBSD.org> | 1998-11-02 08:54:49 +0000 |
---|---|---|
committer | Andrey A. Chernov <ache@FreeBSD.org> | 1998-11-02 08:54:49 +0000 |
commit | 9b15f3eb3b242b3afff6b781f1b4700165486c0a (patch) | |
tree | bcce91cce5b7ea9b1c3c2cde35607aa7ca198feb /www/webglimpse | |
parent | f0acb60217b471187bd55799f513024895afbb96 (diff) | |
download | ports-9b15f3eb3b242b3afff6b781f1b4700165486c0a.tar.gz ports-9b15f3eb3b242b3afff6b781f1b4700165486c0a.zip |
Notes
Diffstat (limited to 'www/webglimpse')
-rw-r--r-- | www/webglimpse/files/patch-af | 2 |
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; } |