May be error in sbcssr.F90 module

String 237 ( near end of sbc_ssr_init subroutine)

    IF( nn_sssr /= 1 .OR. nn_sssr /= 2 )   erp(:,:) = 0._wp

I belive it should be

    IF( nn_sssr /= 1 .AND. nn_sssr /= 2 )   erp(:,:) = 0._wp

Yes indeed. But it does not really matter. It just makes a useless initialization of erp if nn_sssr =1 or 2. Thanks for spotting that anyway

I committed it (with minor cleaning) in 4.2 and main