From 354f3b99b2043816a6280ed03cb8abfb3b2c3613 Mon Sep 17 00:00:00 2001 From: fpeters <> Date: Fri, 1 Apr 2005 17:22:47 +0000 Subject: [PATCH] restored some style --- src/auth.c | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) diff --git a/src/auth.c b/src/auth.c index bbf63a4..f7ad502 100644 --- a/src/auth.c +++ b/src/auth.c @@ -262,7 +262,7 @@ char* http_auth() struct authentication authentications[] = { {"certificate", certificate_auth, - LASSO_SAML_AUTHENTICATION_METHOD_SOFTWARE_PKI}, + LASSO_SAML_AUTHENTICATION_METHOD_SOFTWARE_PKI}, {"http", http_auth, LASSO_SAML_AUTHENTICATION_METHOD_PASSWORD}, { NULL, NULL, NULL} }; @@ -272,8 +272,8 @@ struct authentication* get_authentication(char *auth_method) { int i; - for (i=0; authentications[i].name && \ - strcmp(authentications[i].name, auth_method) != 0; i++) ; + for (i=0; authentications[i].name && + strcmp(authentications[i].name, auth_method) != 0; i++) ; if (authentications[i].name == NULL ) { fprintf(stderr, "no auth by that name\n");