From: Simon Ruderich Date: Thu, 20 Dec 2012 21:05:03 +0000 (+0100) Subject: xpdfrc: Remove wrong quotes from urlCommand. X-Git-Url: https://ruderich.org/simon/gitweb/?p=config%2Fdotfiles.git;a=commitdiff_plain;h=179e6a2c933a64f66faccdabd7b4f81204ddaf97 xpdfrc: Remove wrong quotes from urlCommand. --- diff --git a/xpdfrc b/xpdfrc index a13d256..e558209 100644 --- a/xpdfrc +++ b/xpdfrc @@ -43,5 +43,6 @@ bind n any findNext # Zoom to full page on startup, change to "normal" zoom mode by pressing 0. initialZoom page -# Use Elinks to open URLs. -urlCommand "elinks -remote '%s'" +# Use Elinks to open URLs. No quotes around %s, xpdf must handle the quoting +# or it causes security vulnerabilities with manipulated URLs. +urlCommand "elinks -remote %s"