James Moger
2014-05-23 b11496744d05c842df3f64c14ea4b7b927262f5c
src/main/java/com/gitblit/transport/ssh/SshDaemon.java
@@ -50,8 +50,6 @@
 * Manager for the ssh transport. Roughly analogous to the
 * {@link com.gitblit.transport.git.GitDaemon} class.
 *
 * @author Eric Myhre
 *
 */
public class SshDaemon {
@@ -214,8 +212,8 @@
            Files.touch(file);
            try {
               JnaUtils.setFilemode(file, JnaUtils.S_IRUSR | JnaUtils.S_IWUSR);
            } catch (UnsupportedOperationException e) {
               // Windows
            } catch (UnsatisfiedLinkError | UnsupportedOperationException e) {
               // Unexpected/Unsupported OS or Architecture
            }
            FileOutputStream os = new FileOutputStream(file);