diff options
author | Jelmer Vernooij <jelmer@samba.org> | 2012-02-18 23:52:37 +0100 |
---|---|---|
committer | Jelmer Vernooij <jelmer@samba.org> | 2012-02-18 23:52:37 +0100 |
commit | e33441fafdc4421a88a6c48bf1bb06fee79f1ac7 (patch) | |
tree | cfa47ee51f9d72739c21a94bf54f083fa2dcb3b5 /source4/auth/gensec | |
parent | 1f29707f57db526f56d65110e12dd0ca33ee7e95 (diff) | |
download | samba-e33441fafdc4421a88a6c48bf1bb06fee79f1ac7.tar.gz samba-e33441fafdc4421a88a6c48bf1bb06fee79f1ac7.tar.bz2 samba-e33441fafdc4421a88a6c48bf1bb06fee79f1ac7.zip |
pygensec: Fix whitespace.
Diffstat (limited to 'source4/auth/gensec')
-rw-r--r-- | source4/auth/gensec/pygensec.c | 16 |
1 files changed, 8 insertions, 8 deletions
diff --git a/source4/auth/gensec/pygensec.c b/source4/auth/gensec/pygensec.c index acbad5ff67..5a8744db96 100644 --- a/source4/auth/gensec/pygensec.c +++ b/source4/auth/gensec/pygensec.c @@ -519,20 +519,21 @@ static PyMethodDef py_gensec_security_methods[] = { { "set_credentials", (PyCFunction)py_gensec_set_credentials, METH_VARARGS, "S.start_client(credentials)" }, { "session_info", (PyCFunction)py_gensec_session_info, METH_NOARGS, - "S.session_info() -> info" }, + "S.session_info() -> info" }, { "session_key", (PyCFunction)py_gensec_session_key, METH_NOARGS, - "S.session_key() -> key" }, + "S.session_key() -> key" }, { "start_mech_by_name", (PyCFunction)py_gensec_start_mech_by_name, METH_VARARGS, - "S.start_mech_by_name(name)" }, + "S.start_mech_by_name(name)" }, { "start_mech_by_sasl_name", (PyCFunction)py_gensec_start_mech_by_sasl_name, METH_VARARGS, - "S.start_mech_by_sasl_name(name)" }, - { "start_mech_by_authtype", (PyCFunction)py_gensec_start_mech_by_authtype, METH_VARARGS, "S.start_mech_by_authtype(authtype, level)" }, + "S.start_mech_by_sasl_name(name)" }, + { "start_mech_by_authtype", (PyCFunction)py_gensec_start_mech_by_authtype, METH_VARARGS, + "S.start_mech_by_authtype(authtype, level)" }, { "get_name_by_authtype", (PyCFunction)py_get_name_by_authtype, METH_VARARGS, "S.get_name_by_authtype(authtype) -> name\nLookup an auth type." }, { "want_feature", (PyCFunction)py_gensec_want_feature, METH_VARARGS, - "S.want_feature(feature)\n Request that GENSEC negotiate a particular feature." }, + "S.want_feature(feature)\n Request that GENSEC negotiate a particular feature." }, { "have_feature", (PyCFunction)py_gensec_have_feature, METH_VARARGS, - "S.have_feature()\n Return True if GENSEC negotiated a particular feature." }, + "S.have_feature()\n Return True if GENSEC negotiated a particular feature." }, { "set_max_update_size", (PyCFunction)py_gensec_set_max_update_size, METH_VARARGS, "S.set_max_update_size(max_size) \n Some mechs can fragment update packets, needs to be use before the mech is started." }, { "max_update_size", (PyCFunction)py_gensec_max_update_size, 0, @@ -543,7 +544,6 @@ static PyMethodDef py_gensec_security_methods[] = { "S.wrap(blob_in) -> blob_out\nPackage one clear packet into a wrapped GENSEC packet." }, { "unwrap", (PyCFunction)py_gensec_unwrap, METH_VARARGS, "S.unwrap(blob_in) -> blob_out\nPerform one wrapped GENSEC packet into a clear packet." }, - { NULL } }; |