@@ -1391,7 +1391,7 @@ parse_hba_auth_opt(char *name, char *val, HbaLine *hbaline, int line_num)
1391
1391
hbaline -> auth_method != uaGSS &&
1392
1392
hbaline -> auth_method != uaSSPI &&
1393
1393
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" ));
1395
1395
hbaline -> usermap = pstrdup (val );
1396
1396
}
1397
1397
else if (strcmp (name ,"clientcert" )== 0 )
@@ -1510,15 +1510,15 @@ parse_hba_auth_opt(char *name, char *val, HbaLine *hbaline, int line_num)
1510
1510
if (hbaline -> auth_method != uaKrb5 &&
1511
1511
hbaline -> auth_method != uaGSS &&
1512
1512
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" ));
1514
1514
hbaline -> krb_realm = pstrdup (val );
1515
1515
}
1516
1516
else if (strcmp (name ,"include_realm" )== 0 )
1517
1517
{
1518
1518
if (hbaline -> auth_method != uaKrb5 &&
1519
1519
hbaline -> auth_method != uaGSS &&
1520
1520
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" ));
1522
1522
if (strcmp (val ,"1" )== 0 )
1523
1523
hbaline -> include_realm = true;
1524
1524
else