Skip to content

Commit

Permalink
Merge branch 'bareos-15.2'
Browse files Browse the repository at this point in the history
  • Loading branch information
Marco van Wieringen committed Dec 26, 2015
2 parents 4aa630a + c9297d7 commit 0f50460
Show file tree
Hide file tree
Showing 5 changed files with 6 additions and 4 deletions.
1 change: 1 addition & 0 deletions src/tests/bbatch.c
Expand Up @@ -42,6 +42,7 @@
*/

#include "bareos.h"
#include "jcr.h"
#include "stored/stored.h"
#include "findlib/find.h"
#include "cats/cats.h"
Expand Down
1 change: 1 addition & 0 deletions src/tests/bvfs_test.c
Expand Up @@ -25,6 +25,7 @@
*/

#include "bareos.h"
#include "jcr.h"
#include "cats/cats.h"
#include "cats/sql_glue.h"
#include "cats/bvfs.h"
Expand Down
1 change: 1 addition & 0 deletions src/tests/cats_test.c
Expand Up @@ -24,6 +24,7 @@
#define _BDB_PRIV_INTERFACE_

#include "bareos.h"
#include "jcr.h"
#include "cats/cats.h"
#include "cats/bdb_priv.h"
#include "cats/sql_glue.h"
Expand Down
3 changes: 1 addition & 2 deletions src/tests/testls.c
Expand Up @@ -27,6 +27,7 @@
*/

#include "bareos.h"
#include "jcr.h"
#include "findlib/find.h"
#include "filed/fd_plugins.h"

Expand Down Expand Up @@ -275,5 +276,3 @@ static void print_ls_output(char *fname, char *link, int type, struct stat *stat
*p = 0;
fputs(buf, stdout);
}

bool python_set_prog(JCR*, char const*) { return false; }
4 changes: 2 additions & 2 deletions src/win32/plugins/filed/mssqlvdi-fd.c
Expand Up @@ -1173,7 +1173,7 @@ static inline void perform_ado_backup(bpContext *ctx)
switch (p_ctx->backup_level) {
case L_INCREMENTAL:
Mmsg(ado_query,
"BACKUP LOG %s TO VIRTUAL_DEVICE='%s' WITH BLOCKSIZE=%d, BUFFERCOUNT=%d, MAXTRANSFERSIZE=%d",
"BACKUP LOG [%s] TO VIRTUAL_DEVICE='%s' WITH BLOCKSIZE=%d, BUFFERCOUNT=%d, MAXTRANSFERSIZE=%d",
p_ctx->database,
vdsname,
DEFAULT_BLOCKSIZE,
Expand Down Expand Up @@ -1232,7 +1232,7 @@ static inline void perform_ado_restore(bpContext *ctx)
switch (p_ctx->backup_level) {
case L_INCREMENTAL:
Mmsg(ado_query,
"RESTORE LOG %s FROM VIRTUAL_DEVICE='%s' WITH BLOCKSIZE=%d, BUFFERCOUNT=%d, MAXTRANSFERSIZE=%d, %s",
"RESTORE LOG [%s] FROM VIRTUAL_DEVICE='%s' WITH BLOCKSIZE=%d, BUFFERCOUNT=%d, MAXTRANSFERSIZE=%d, %s",
p_ctx->database,
vdsname,
DEFAULT_BLOCKSIZE,
Expand Down

0 comments on commit 0f50460

Please sign in to comment.