Adding some space

This commit is contained in:
Anshul Maheshwari 2015-05-25 18:49:00 +05:30
parent f1cf6c7be8
commit c5cebeaa4f
3 changed files with 4 additions and 4 deletions

View File

@ -68,11 +68,11 @@ int main(int argc, char *argv[])
{ {
fatal(EXIT_TOO_MANY_INPUT_FILES, "UDP mode is not compatible with input files.\n"); fatal(EXIT_TOO_MANY_INPUT_FILES, "UDP mode is not compatible with input files.\n");
} }
if (ccx_options.input_source==CCX_DS_NETWORK || ccx_options.input_source==CCX_DS_TCP) if (ccx_options.input_source == CCX_DS_NETWORK || ccx_options.input_source == CCX_DS_TCP)
{ {
ccx_options.buffer_input=1; // Mandatory, because each datagram must be read complete. ccx_options.buffer_input=1; // Mandatory, because each datagram must be read complete.
} }
if (ctx->num_input_files && ccx_options.input_source==CCX_DS_TCP) if (ctx->num_input_files && ccx_options.input_source == CCX_DS_TCP)
{ {
fatal(EXIT_TOO_MANY_INPUT_FILES, "TCP mode is not compatible with input files.\n"); fatal(EXIT_TOO_MANY_INPUT_FILES, "TCP mode is not compatible with input files.\n");
} }

View File

@ -149,9 +149,9 @@ int switch_to_next_file (struct lib_ccx_ctx *ctx, LLONG bytesinbuffer)
} }
ctx->infd = start_upd_srv(ccx_options.udpaddr, ccx_options.udpport); ctx->infd = start_upd_srv(ccx_options.udpaddr, ccx_options.udpport);
return 1;
if(ctx->infd < 0) if(ctx->infd < 0)
fatal (CCX_COMMON_EXIT_BUG_BUG, "socket() failed."); fatal (CCX_COMMON_EXIT_BUG_BUG, "socket() failed.");
return 1;
} }

View File

@ -1577,7 +1577,7 @@ void parse_parameters (struct ccx_s_options *opt, int argc, char *argv[])
opt->udpport = atoi_hex(argv[i + 1]); opt->udpport = atoi_hex(argv[i + 1]);
} }
opt->input_source=CCX_DS_NETWORK; opt->input_source = CCX_DS_NETWORK;
i++; i++;
continue; continue;
} }