@@ -1391,7 +1391,7 @@ parse_hba_auth_opt(char *name, char *val, HbaLine *hbaline, int line_num)
13911391hbaline -> auth_method != uaGSS &&
13921392hbaline -> auth_method != uaSSPI &&
13931393hbaline -> 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" ));
13951395hbaline -> usermap = pstrdup (val );
13961396}
13971397else if (strcmp (name ,"clientcert" )== 0 )
@@ -1510,15 +1510,15 @@ parse_hba_auth_opt(char *name, char *val, HbaLine *hbaline, int line_num)
15101510if (hbaline -> auth_method != uaKrb5 &&
15111511hbaline -> auth_method != uaGSS &&
15121512hbaline -> 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" ));
15141514hbaline -> krb_realm = pstrdup (val );
15151515}
15161516else if (strcmp (name ,"include_realm" )== 0 )
15171517{
15181518if (hbaline -> auth_method != uaKrb5 &&
15191519hbaline -> auth_method != uaGSS &&
15201520hbaline -> 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" ));
15221522if (strcmp (val ,"1" )== 0 )
15231523hbaline -> include_realm = true;
15241524else