From: Arran Cudbard-Bell Date: Wed, 6 Mar 2013 22:20:37 +0000 (-0500) Subject: WS fixup X-Git-Tag: release_3_0_0_beta1~813 X-Git-Url: http://git.ipfire.org/cgi-bin/gitweb.cgi?a=commitdiff_plain;h=1bd01c0b37e0624f7df815266c2bd2166314e7f7;p=thirdparty%2Ffreeradius-server.git WS fixup --- diff --git a/src/modules/rlm_sql/sql.c b/src/modules/rlm_sql/sql.c index 42ed898437e..6fc963a4bab 100644 --- a/src/modules/rlm_sql/sql.c +++ b/src/modules/rlm_sql/sql.c @@ -215,25 +215,25 @@ int sql_userparse(VALUE_PAIR **head, rlm_sql_row_t row) token = gettoken(&value, buf, sizeof(buf)); switch (token) { - /* - * Take the unquoted string. - */ + /* + * Take the unquoted string. + */ case T_SINGLE_QUOTED_STRING: case T_DOUBLE_QUOTED_STRING: value = buf; break; - /* - * Mark the pair to be allocated later. - */ + /* + * Mark the pair to be allocated later. + */ case T_BACK_QUOTED_STRING: value = NULL; do_xlat = 1; break; - /* - * Keep the original string. - */ + /* + * Keep the original string. + */ default: value = row[3]; break;