mirror of
https://git.openldap.org/openldap/openldap.git
synced 2025-03-07 14:18:15 +08:00
Fix multi-line string literals. new GCC complains...
This commit is contained in:
parent
0afba16b9b
commit
1643145b03
@ -2951,8 +2951,7 @@ parse_syncrepl_line(
|
||||
si->interval = atoi( val );
|
||||
if ( si->interval <= 0 ) {
|
||||
fprintf( stderr,
|
||||
"Error: parse_syncrepl_line: invalid interval \"%d
|
||||
\"\n",
|
||||
"Error: parse_syncrepl_line: invalid interval \"%d\"\n",
|
||||
si->interval);
|
||||
return 1;
|
||||
}
|
||||
@ -2969,8 +2968,7 @@ parse_syncrepl_line(
|
||||
|
||||
if ( si->bindmethod == LDAP_AUTH_SASL) {
|
||||
if ((gots & GOT_MECH) == 0) {
|
||||
fprintf( stderr, "Error: \"syncrepl\" line needs SASLmech flag in
|
||||
" );
|
||||
fprintf( stderr, "Error: \"syncrepl\" line needs SASLmech flag in " );
|
||||
fprintf( stderr, "slapd config file\n" );
|
||||
return -1;
|
||||
}
|
||||
|
Loading…
Reference in New Issue
Block a user