diff options
author | Tim Prouty <tprouty@samba.org> | 2009-02-21 13:54:43 -0800 |
---|---|---|
committer | Tim Prouty <tprouty@samba.org> | 2009-02-21 14:00:05 -0800 |
commit | 39b508e38e831f826be254391f7f341bc935f792 (patch) | |
tree | 0622f59448a7bd6c4262679db9e0fa2fee466241 /lib/util | |
parent | 2ad2b6f723964ed6e5d1d12c8403bd3d4147dc84 (diff) | |
download | samba-39b508e38e831f826be254391f7f341bc935f792.tar.gz samba-39b508e38e831f826be254391f7f341bc935f792.tar.bz2 samba-39b508e38e831f826be254391f7f341bc935f792.zip |
Fix shadowed declaration warning
Diffstat (limited to 'lib/util')
-rw-r--r-- | lib/util/util.h | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/lib/util/util.h b/lib/util/util.h index 4d4df21600..d3e446f488 100644 --- a/lib/util/util.h +++ b/lib/util/util.h @@ -732,7 +732,7 @@ _PUBLIC_ void close_low_fds(bool stderr_too); /** Become a daemon, discarding the controlling terminal. **/ -_PUBLIC_ void become_daemon(bool fork, bool no_process_group); +_PUBLIC_ void become_daemon(bool do_fork, bool no_process_group); /** * Load a ini-style file. |