[GLUE] Rsync SAMBA_3_2_0 SVN r25598 in order to create the v3-2-test branch.
[samba.git] / source / lib / dummysmbd.c
index 153ca5cd8cfde3d3e9050edb15667d0f25f85adc..38bec5270d292adcd83403093afbb6fb92b17bbd 100644 (file)
@@ -6,7 +6,7 @@
 
    This program is free software; you can redistribute it and/or modify
    it under the terms of the GNU General Public License as published by
-   the Free Software Foundation; either version 2 of the License, or
+   the Free Software Foundation; either version 3 of the License, or
    (at your option) any later version.
 
    This program is distributed in the hope that it will be useful,
    GNU General Public License for more details.
 
    You should have received a copy of the GNU General Public License
-   along with this program; if not, write to the Free Software
-   Foundation, Inc., 675 Mass Ave, Cambridge, MA 02139, USA.
+   along with this program.  If not, see <http://www.gnu.org/licenses/>.
 */
 
 /* Stupid dummy functions required due to the horrible dependency mess
    in Samba. */
 
-void decrement_smbd_process_count( void );
+#include "includes.h"
 
-void decrement_smbd_process_count( void )
+int find_service(fstring service)
 {
-       return;
+       return -1;
+}
+
+BOOL conn_snum_used(int snum)
+{
+       return False;
+}
+
+void cancel_pending_lock_requests_by_fid(files_struct *fsp, struct byte_range_lock *br_lck)
+{
+}
+
+void send_stat_cache_delete_message(const char *name)
+{
+}
+
+NTSTATUS can_delete_directory(struct connection_struct *conn,
+                               const char *dirname)
+{
+       return NT_STATUS_OK;
 }