1
0
mirror of https://github.com/samba-team/samba.git synced 2025-02-03 13:47:25 +03:00

s3: Fix a bug in net's use of popt

In order to add --use-ccache to net, I added another "bool opt_ccache;" to
struct net_context. popt did not like this, it took a while to figure out why.
Popt has the lines

    /* XXX Check alignment, may fail on funky platforms. */
    if (arg == NULL || (((unsigned long)arg) & (sizeof(*arg)-1)))
        return POPT_ERROR_NULLARG;

The "bool opt_ccache;" was not aligned anymore...
This commit is contained in:
Volker Lendecke 2010-01-24 18:51:58 +01:00
parent b8996baba6
commit bff48738a8

View File

@ -70,7 +70,7 @@ struct net_context {
const char *opt_exclude;
const char *opt_destination;
int opt_testmode;
bool opt_kerberos;
int opt_kerberos;
int opt_force_full_repl;
int opt_single_obj_repl;
int opt_clean_old_entries;