From: Alan T. DeKok Date: Sat, 2 Mar 2013 15:10:04 +0000 (-0500) Subject: Note that it's fall-through X-Git-Tag: release_3_0_0_beta1~872 X-Git-Url: http://git.ipfire.org/cgi-bin/gitweb.cgi?a=commitdiff_plain;h=2ada82d0b1963012b4479394ecfd2929ed0a9314;p=thirdparty%2Ffreeradius-server.git Note that it's fall-through --- diff --git a/src/modules/rlm_sql/drivers/rlm_sql_unixodbc/rlm_sql_unixodbc.c b/src/modules/rlm_sql/drivers/rlm_sql_unixodbc/rlm_sql_unixodbc.c index 6559cfbb12d..1c2ba8c1f63 100644 --- a/src/modules/rlm_sql/drivers/rlm_sql_unixodbc/rlm_sql_unixodbc.c +++ b/src/modules/rlm_sql/drivers/rlm_sql_unixodbc/rlm_sql_unixodbc.c @@ -410,6 +410,7 @@ static int sql_state(long err_handle, rlm_sql_handle_t *handle, UNUSED rlm_sql_c switch(state[1]) { case '1': /* SQLSTATE 01 class contains info and warning messages */ radlog(L_INFO, "rlm_sql_unixodbc: %s %s\n", state, error); + /* FALL-THROUGH */ case '0': /* SQLSTATE 00 class means success */ res = 0; break;