aboutsummaryrefslogtreecommitdiffstats
path: root/cshared/auth_method_cshared.go
diff options
context:
space:
mode:
Diffstat (limited to 'cshared/auth_method_cshared.go')
-rw-r--r--cshared/auth_method_cshared.go6
1 files changed, 3 insertions, 3 deletions
diff --git a/cshared/auth_method_cshared.go b/cshared/auth_method_cshared.go
index afd9549..2219edb 100644
--- a/cshared/auth_method_cshared.go
+++ b/cshared/auth_method_cshared.go
@@ -87,12 +87,12 @@ func c_ParseAuthorizedKey(in []byte) (uint64, *C.char, *C.char, *C.char, int, in
pkey, comment, options, rest, err := ssh.ParseAuthorizedKey(in)
if err != nil {
return IH, nil, nil, nil, 0, ErrorCodeInternal,
- C.CString(err.Error())
+ C.CString(err.Error())
}
pkey_handle := RegisterObject(&pkey)
mopt := strings.Join(options, "\xff")
return uint64(pkey_handle), C.CString(comment), C.CString(mopt),
- C.CString(string(rest)), len(rest), ErrorCodeSuccess, nil
+ C.CString(string(rest)), len(rest), ErrorCodeSuccess, nil
}
//export c_ssh_Password_New
@@ -189,4 +189,4 @@ func c_ssh_PublicKeys_set_Signer(p uint64, v uint64) {
return
}
obj.(*gssh.PublicKeys).Signer = *signer.(*ssh.Signer)
-} \ No newline at end of file
+}