1
0
mirror of https://github.com/samba-team/samba.git synced 2025-01-11 05:18:09 +03:00

r1880: bugger, now I have used gcc 3.4.1 myself and have statements before declarations

Does any knows if there are flags to let gcc 3.4.1 fail with that?

metze
(This used to be commit 6ad57a86c8)
This commit is contained in:
Stefan Metzmacher 2004-08-18 13:00:28 +00:00 committed by Gerald (Jerry) Carter
parent bc3a20e9d8
commit 770fb6d22d

View File

@ -157,6 +157,11 @@ static int binary_net(int argc, const char **argv)
TALLOC_CTX *mem_ctx;
struct net_context *ctx;
poptContext pc;
struct poptOption long_options[] = {
{"help", 'h', POPT_ARG_NONE, 0, 'h'},
{NULL, 0, POPT_ARG_INCLUDE_TABLE, popt_common_version},
{ 0, 0, 0, 0}
};
setup_logging("net", DEBUG_STDOUT);
@ -172,13 +177,7 @@ static int binary_net(int argc, const char **argv)
}
ZERO_STRUCTP(ctx);
ctx->mem_ctx = mem_ctx;
struct poptOption long_options[] = {
{"help", 'h', POPT_ARG_NONE, 0, 'h'},
{NULL, 0, POPT_ARG_INCLUDE_TABLE, popt_common_version},
{ 0, 0, 0, 0}
};
ctx->mem_ctx = mem_ctx;
pc = poptGetContext(NULL, argc, (const char **) argv, long_options,
POPT_CONTEXT_KEEP_FIRST);