From e33441fafdc4421a88a6c48bf1bb06fee79f1ac7 Mon Sep 17 00:00:00 2001 From: Jelmer Vernooij Date: Sat, 18 Feb 2012 23:52:37 +0100 Subject: pygensec: Fix whitespace. --- source4/auth/gensec/pygensec.c | 16 ++++++++-------- 1 file changed, 8 insertions(+), 8 deletions(-) (limited to 'source4/auth') 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 } }; -- cgit