X-Git-Url: https://git.gag.com/?a=blobdiff_plain;f=client-src%2Fsendbackup-gnutar.c;h=0aef9c707fc1f9ea98746dae0fddb211697dfc6d;hb=d3b2175e084f88c8736ad7073eacbf4670147aec;hp=0ef79374d6a6fa7b8b553fcb1d6448ac188f18d3;hpb=34197d9f46a5f4e944378cbb65fca32ee0eec7b9;p=debian%2Famanda diff --git a/client-src/sendbackup-gnutar.c b/client-src/sendbackup-gnutar.c index 0ef7937..0aef9c7 100644 --- a/client-src/sendbackup-gnutar.c +++ b/client-src/sendbackup-gnutar.c @@ -24,7 +24,7 @@ * file named AUTHORS, in the root directory of this distribution. */ /* - * $Id: sendbackup-gnutar.c,v 1.98.2.1 2006/11/24 18:10:38 martinea Exp $ + * $Id: sendbackup-gnutar.c,v 1.98 2006/07/25 18:35:21 martinea Exp $ * * send backup data using GNU tar */ @@ -36,7 +36,7 @@ #include "util.h" #include "getfsent.h" /* for amname_to_dirname lookup */ #include "version.h" -#include "clientconf.h" +#include "conffile.h" #ifdef SAMBA_CLIENT #include "findpass.h" @@ -44,7 +44,7 @@ static amregex_t re_table[] = { /* tar prints the size in bytes */ - AM_SIZE_RE("^ *Total bytes written: [0-9][0-9]*", 1), + AM_SIZE_RE("^ *Total bytes written: [0-9][0-9]*", 1, 1), AM_NORMAL_RE("^Elapsed time:"), AM_NORMAL_RE("^Throughput"), @@ -182,10 +182,10 @@ start_backup( encpid = -1; } /* now do the client-side compression */ - if(options->compress == COMPR_FAST || options->compress == COMPR_BEST) { + if(options->compress == COMP_FAST || options->compress == COMP_BEST) { compopt = skip_argument; #if defined(COMPRESS_BEST_OPT) && defined(COMPRESS_FAST_OPT) - if(options->compress == COMPR_BEST) { + if(options->compress == COMP_BEST) { compopt = COMPRESS_BEST_OPT; } else { compopt = COMPRESS_FAST_OPT; @@ -200,7 +200,7 @@ start_backup( dbprintf((" %s", compopt)); } dbprintf(("\n")); - } else if (options->compress == COMPR_CUST) { + } else if (options->compress == COMP_CUST) { compopt = skip_argument; comppid = pipespawn(options->clntcompprog, STDIN_PIPE, &dumpout, &compout, &mesgf, @@ -216,7 +216,7 @@ start_backup( comppid = -1; } - gnutar_list_dir = client_getconf_str(CLN_GNUTAR_LIST_DIR); + gnutar_list_dir = getconf_str(CNF_GNUTAR_LIST_DIR); if (strlen(gnutar_list_dir) == 0) gnutar_list_dir = NULL; @@ -329,7 +329,7 @@ start_backup( /* find previous dump time */ - amandates_file = client_getconf_str(CLN_AMANDATES); + amandates_file = getconf_str(CNF_AMANDATES); if(!start_amandates(amandates_file, 0)) { error("error [opening %s: %s]", amandates_file, strerror(errno)); /*NOTREACHED*/