@@ -1391,7 +1391,7 @@ parse_hba_auth_opt(char *name, char *val, HbaLine *hbaline, int line_num)
13911391 hbaline -> auth_method != uaGSS &&
13921392 hbaline -> auth_method != uaSSPI &&
13931393 hbaline -> auth_method != uaCert )
1394- INVALID_AUTH_OPTION ("map" , gettext_noop ("ident, peer, krb5, gssapi, sspi and cert" ));
1394+ INVALID_AUTH_OPTION ("map" , gettext_noop ("ident, peer, krb5, gssapi, sspi, and cert" ));
13951395 hbaline -> usermap = pstrdup (val );
13961396 }
13971397 else if (strcmp (name , "clientcert" ) == 0 )
@@ -1510,15 +1510,15 @@ parse_hba_auth_opt(char *name, char *val, HbaLine *hbaline, int line_num)
15101510 if (hbaline -> auth_method != uaKrb5 &&
15111511 hbaline -> auth_method != uaGSS &&
15121512 hbaline -> auth_method != uaSSPI )
1513- INVALID_AUTH_OPTION ("krb_realm" , gettext_noop ("krb5, gssapi and sspi" ));
1513+ INVALID_AUTH_OPTION ("krb_realm" , gettext_noop ("krb5, gssapi, and sspi" ));
15141514 hbaline -> krb_realm = pstrdup (val );
15151515 }
15161516 else if (strcmp (name , "include_realm" ) == 0 )
15171517 {
15181518 if (hbaline -> auth_method != uaKrb5 &&
15191519 hbaline -> auth_method != uaGSS &&
15201520 hbaline -> auth_method != uaSSPI )
1521- INVALID_AUTH_OPTION ("include_realm" , gettext_noop ("krb5, gssapi and sspi" ));
1521+ INVALID_AUTH_OPTION ("include_realm" , gettext_noop ("krb5, gssapi, and sspi" ));
15221522 if (strcmp (val , "1" ) == 0 )
15231523 hbaline -> include_realm = true;
15241524 else
0 commit comments