Fixed compile without --enable-experiment
This commit is contained in:
parent
f3516242d5
commit
5055afc9d3
@ -277,7 +277,9 @@ int binkp(int role)
|
|||||||
bp.remote_EOB = FALSE;
|
bp.remote_EOB = FALSE;
|
||||||
bp.msgs_on_queue = 0;
|
bp.msgs_on_queue = 0;
|
||||||
bp.cmpblksize = SND_BLKSIZE;
|
bp.cmpblksize = SND_BLKSIZE;
|
||||||
|
#ifdef USE_EXPERIMENT
|
||||||
bp.EXTCMDwe = bp.EXTCMDthey = No; /* Default */
|
bp.EXTCMDwe = bp.EXTCMDthey = No; /* Default */
|
||||||
|
#endif
|
||||||
#ifdef HAVE_ZLIB_H
|
#ifdef HAVE_ZLIB_H
|
||||||
if (localoptions & NOPLZ)
|
if (localoptions & NOPLZ)
|
||||||
bp.PLZthey = bp.PLZwe = No;
|
bp.PLZthey = bp.PLZwe = No;
|
||||||
@ -2032,10 +2034,12 @@ int binkp_send_comp_opts(void)
|
|||||||
|
|
||||||
if (plz || gz || bz2) {
|
if (plz || gz || bz2) {
|
||||||
p = xstrcpy((char *)"OPT");
|
p = xstrcpy((char *)"OPT");
|
||||||
|
#ifdef USE_EXPERIMENT
|
||||||
if (bz2 || gz) {
|
if (bz2 || gz) {
|
||||||
bp.EXTCMDwe = Want;
|
bp.EXTCMDwe = Want;
|
||||||
p = xstrcat(p, (char *)" EXTCMD");
|
p = xstrcat(p, (char *)" EXTCMD");
|
||||||
}
|
}
|
||||||
|
#endif
|
||||||
if (gz)
|
if (gz)
|
||||||
p = xstrcat(p, (char *)" GZ");
|
p = xstrcat(p, (char *)" GZ");
|
||||||
if (bz2)
|
if (bz2)
|
||||||
@ -2053,8 +2057,8 @@ int binkp_send_comp_opts(void)
|
|||||||
|
|
||||||
void binkp_set_comp_state(void)
|
void binkp_set_comp_state(void)
|
||||||
{
|
{
|
||||||
Syslog('b', "Binkp: EXTCMD they=%s we=%s", opstate[bp.EXTCMDthey], opstate[bp.EXTCMDwe]);
|
|
||||||
#ifdef USE_EXPERIMENT
|
#ifdef USE_EXPERIMENT
|
||||||
|
Syslog('b', "Binkp: EXTCMD they=%s we=%s", opstate[bp.EXTCMDthey], opstate[bp.EXTCMDwe]);
|
||||||
if ((bp.EXTCMDthey == Want) && (bp.EXTCMDwe == Want)) {
|
if ((bp.EXTCMDthey == Want) && (bp.EXTCMDwe == Want)) {
|
||||||
Syslog('+', "Binkp: EXTCMD is active");
|
Syslog('+', "Binkp: EXTCMD is active");
|
||||||
bp.EXTCMDthey = bp.EXTCMDwe = Active;
|
bp.EXTCMDthey = bp.EXTCMDwe = Active;
|
||||||
|
Reference in New Issue
Block a user