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

Remove the final regdb_close() from net_conf.c

This is to hide the registry from net_conf.
Right now, it does not harm if "net conf" does not close
the registry file explicitly just before exiting.
I am working out a proper way of handling open/close
operations transparently in the libnet_conf library.

Michael
(This used to be commit 790ef78944)
This commit is contained in:
Michael Adam 2008-01-04 19:52:22 +01:00
parent 2a8722d4c3
commit b1472c0956

View File

@ -863,8 +863,6 @@ int net_conf(int argc, const char **argv)
ret = net_run_function2(argc, argv, "net conf", func);
regdb_close();
return ret;
}