-monkeysphere (0.25-1~pre) UNRELEASED; urgency=low
+Monkeysphere (0.25-1~pre) UNRELEASED; urgency=low
* New upstream release:
- update/fix the marginal ui output
- some portability improvements
- properly handle translation of keys with fingerprints with leading
all-zero bytes.
+ - resolve symlinks when checking paths (thanks Silvio Rhatto) (closes MS #917)
* update Standard-Version to 3.8.1
- -- Daniel Kahn Gillmor <dkg@fifthhorseman.net> Thu, 21 May 2009 13:04:10 -0400
+ -- Jameson Graef Rollins <jrollins@finestructure.net> Mon, 29 Jun 2009 11:27:33 -0400
monkeysphere (0.24-1) unstable; urgency=low
log debug "checking path permission '$path'..."
+ # rewrite path if it points to a symlink
+ if [ -h "$path" ] ; then
+ path=$(readlink -f "$path")
+ log debug "checking path symlink '$path'..."
+ fi
+
# return 255 if cannot stat file
if ! stat=$(ls -ld "$path" 2>/dev/null) ; then
log error "could not stat path '$path'."