1
0
mirror of https://github.com/samba-team/samba.git synced 2024-12-25 23:21:54 +03:00

Remove my change

(This used to be commit 7bf4216644)
This commit is contained in:
Jeremy Allison 2008-02-28 02:13:48 -08:00
parent 9d37794a6c
commit 22ac09c08c

View File

@ -3490,6 +3490,7 @@ bool lp_file_list_changed(void)
DEBUG(6, ("lp_file_list_changed()\n"));
if (lp_config_backend() == CONFIG_BACKEND_REGISTRY) {
uint64_t conf_cur_seqnum;
if (conf_ctx == NULL) {
WERROR werr;
werr = libnet_conf_open(NULL, &conf_ctx);
@ -3499,12 +3500,12 @@ bool lp_file_list_changed(void)
return false;
}
}
if (conf_last_seqnum !=
libnet_conf_get_seqnum(conf_ctx, NULL, NULL))
{
DEBUGADD(6, ("regdb seqnum changed: old = %lu, "
"new = %lu\n", (unsigned long)conf_last_seqnum,
(unsigned long)libnet_conf_get_seqnum(conf_ctx, NULL, NULL)));
conf_cur_seqnum = libnet_conf_get_seqnum(conf_ctx, NULL, NULL);
if (conf_last_seqnum != conf_cur_seqnum) {
DEBUGADD(6, ("regdb seqnum changed: old = %llu, "
"new = %llu\n",
(unsigned long long)conf_last_seqnum,
(unsigned long long)conf_cur_seqnum));
return true;
} else {
/*