* lisp/server.el (server-ensure-safe-dir): Don't claim the directory
is a file if we fail to get anything from `file-attributes'.
(w32 (eq system-type 'windows-nt))
(unsafe (cond
((not (eq t (car attrs)))
- (format "it is a %s" (if (stringp (car attrs))
- "symlink" "file")))
+ (if (null attrs) "its attributes can't be checked"
+ (format "it is a %s"
+ (if (stringp (car attrs))
+ "symlink" "file"))))
((and w32 (zerop uid)) ; on FAT32?
(display-warning
'server