diff options
author | Steven Barth <steven@midlink.org> | 2009-01-20 10:56:07 +0000 |
---|---|---|
committer | Steven Barth <steven@midlink.org> | 2009-01-20 10:56:07 +0000 |
commit | 527edf0ba002370b665add902b530c11fe5e0da2 (patch) | |
tree | 4892a9b262a828afc087cdc39aa610d82b9ab626 /modules/admin-full/luasrc/model/cbi/admin_system/sshkeys.lua | |
parent | 514a9bfec70e393b3c27d625237ba0578789a8a9 (diff) |
Replace Dos line endings with Unix ones where needed
Diffstat (limited to 'modules/admin-full/luasrc/model/cbi/admin_system/sshkeys.lua')
-rw-r--r-- | modules/admin-full/luasrc/model/cbi/admin_system/sshkeys.lua | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/modules/admin-full/luasrc/model/cbi/admin_system/sshkeys.lua b/modules/admin-full/luasrc/model/cbi/admin_system/sshkeys.lua index 1c5569ccd4..26410c98a1 100644 --- a/modules/admin-full/luasrc/model/cbi/admin_system/sshkeys.lua +++ b/modules/admin-full/luasrc/model/cbi/admin_system/sshkeys.lua @@ -26,10 +26,10 @@ end function f.handle(self, state, data) if state == FORM_VALID then if data.keys then - luci.fs.writefile(keyfile, data.keys) + luci.fs.writefile(keyfile, data.keys:gsub("\r\n", "\n")) end end return true end -return f
\ No newline at end of file +return f |