diff options
author | Gerald W. Carter <jerry@samba.org> | 2008-01-29 15:08:37 -0600 |
---|---|---|
committer | Gerald W. Carter <jerry@samba.org> | 2008-01-29 15:08:37 -0600 |
commit | c0aa988e83c16ac7fe9d1a9d6cb51fa989aab1e9 (patch) | |
tree | 5de9e73e52606eedd1bac038c803080bc3d015e5 | |
parent | cb9029dbf5b4ba5034499eb7dd8e5dd456e0abfe (diff) | |
download | samba-c0aa988e83c16ac7fe9d1a9d6cb51fa989aab1e9.tar.gz samba-c0aa988e83c16ac7fe9d1a9d6cb51fa989aab1e9.tar.bz2 samba-c0aa988e83c16ac7fe9d1a9d6cb51fa989aab1e9.zip |
Make make_way_for_eventlogs() static
(This used to be commit cb6531965b2baab320123d4301ab851c6e22aa58)
-rw-r--r-- | source3/rpc_server/srv_eventlog_lib.c | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/source3/rpc_server/srv_eventlog_lib.c b/source3/rpc_server/srv_eventlog_lib.c index 1d902fe215..269e2f318e 100644 --- a/source3/rpc_server/srv_eventlog_lib.c +++ b/source3/rpc_server/srv_eventlog_lib.c @@ -140,8 +140,8 @@ int elog_tdb_size( TDB_CONTEXT * tdb, int *MaxSize, int *Retention ) return True if we made enough room to accommodate needed bytes ********************************************************************/ -bool make_way_for_eventlogs( TDB_CONTEXT * the_tdb, int32 needed, - bool whack_by_date ) +static bool make_way_for_eventlogs( TDB_CONTEXT * the_tdb, int32 needed, + bool whack_by_date ) { int start_record, i, new_start; int end_record; |