aboutsummaryrefslogtreecommitdiffstats
path: root/lib/ssh/test/ssh_sftpd_SUITE.erl
diff options
context:
space:
mode:
authorIngela Anderton Andin <[email protected]>2012-02-07 14:27:52 +0100
committerIngela Anderton Andin <[email protected]>2012-02-10 15:34:29 +0100
commit7e3101ebcf816925e3f6b0d4fdd75b18999b63ad (patch)
tree3b815f956baee2968e3ec919099e358b5e804d14 /lib/ssh/test/ssh_sftpd_SUITE.erl
parentc44ad548ebff4b4aaa6c7eafa463a94f638bf9d6 (diff)
downloadotp-7e3101ebcf816925e3f6b0d4fdd75b18999b63ad.tar.gz
otp-7e3101ebcf816925e3f6b0d4fdd75b18999b63ad.tar.bz2
otp-7e3101ebcf816925e3f6b0d4fdd75b18999b63ad.zip
Correct access flag handling in sftpd
Also Moved app test to ssh_basic_SUITE There is no reason to have a separate suite for the app test it increases maintenance costs
Diffstat (limited to 'lib/ssh/test/ssh_sftpd_SUITE.erl')
-rw-r--r--lib/ssh/test/ssh_sftpd_SUITE.erl2
1 files changed, 1 insertions, 1 deletions
diff --git a/lib/ssh/test/ssh_sftpd_SUITE.erl b/lib/ssh/test/ssh_sftpd_SUITE.erl
index 4af4c28ecf..6e4480ee9d 100644
--- a/lib/ssh/test/ssh_sftpd_SUITE.erl
+++ b/lib/ssh/test/ssh_sftpd_SUITE.erl
@@ -552,7 +552,7 @@ set_attributes(Config) when is_list(Config) ->
{ok, FileInfo} = file:read_file_info(FileName),
OrigPermissions = FileInfo#file_info.mode,
- Permissions = 8#400, %% User read-only
+ Permissions = 8#600, %% User read-write-only
Flags = ?SSH_FILEXFER_ATTR_PERMISSIONS,