]> git.sur5r.net Git - bacula/bacula/blob - bacula/src/findlib/enable_priv.c
9d5be012005c5b1c9e7c142d9ee05901368755aa
[bacula/bacula] / bacula / src / findlib / enable_priv.c
1 /*
2    Bacula(R) - The Network Backup Solution
3
4    Copyright (C) 2000-2015 Kern Sibbald
5
6    The original author of Bacula is Kern Sibbald, with contributions
7    from many others, a complete list can be found in the file AUTHORS.
8
9    You may use this file and others of this release according to the
10    license defined in the LICENSE file, which includes the Affero General
11    Public License, v3.0 ("AGPLv3") and some additional permissions and
12    terms pursuant to its AGPLv3 Section 7.
13
14    This notice must be preserved when any source code is 
15    conveyed and/or propagated.
16
17    Bacula(R) is a registered trademark of Kern Sibbald.
18 */
19 /*
20  *  Enable backup privileges for Win32 systems.
21  *
22  *    Kern Sibbald, May MMIII
23  *
24  */
25
26 #include "bacula.h"
27 #include "find.h"
28 #include "jcr.h"
29
30
31 /*=============================================================*/
32 /*                                                             */
33 /*                 * * *  U n i x * * * *                      */
34 /*                                                             */
35 /*=============================================================*/
36
37 #if !defined(HAVE_WIN32)
38
39 int enable_backup_privileges(JCR *jcr, int ignore_errors)
40  { return 0; }
41
42
43 #endif