]> git.sur5r.net Git - bacula/bacula/commitdiff
ebl add bregtest tool
authorEric Bollengier <eric@eb.homelinux.org>
Sun, 22 Apr 2007 20:00:49 +0000 (20:00 +0000)
committerEric Bollengier <eric@eb.homelinux.org>
Sun, 22 Apr 2007 20:00:49 +0000 (20:00 +0000)
git-svn-id: https://bacula.svn.sourceforge.net/svnroot/bacula/trunk@4601 91ce42f0-d328-0410-95d8-f526ca767f89

bacula/src/tools/Makefile.in
bacula/src/tools/bregtest.c

index ee4f29391f35ca15c380360635fcd884f93b2adf..184762e3887cc6427ca4d494ef43c28ff228a221 100644 (file)
@@ -38,7 +38,7 @@ EXTRAOBJS = @OBJLIST@
 DIRCONFOBJS = ../dird/dird_conf.o ../dird/run_conf.o ../dird/inc_conf.o
 
 NODIRTOOLS = bsmtp
-DIRTOOLS = bsmtp dbcheck drivetype fstype testfind testls bregex bwild bbatch
+DIRTOOLS = bsmtp dbcheck drivetype fstype testfind testls bregex bwild bbatch bregtest
 TOOLS = $(@DIR_TOOLS@)
 
 INSNODIRTOOLS = bsmtp
@@ -62,6 +62,9 @@ all: Makefile $(TOOLS) gigaslam
 bsmtp: bsmtp.o ../lib/libbac.a        
        $(CXX) $(LDFLAGS) -L../lib -o $@ bsmtp.o -lbac -lm $(DLIB) $(LIBS) $(GETTEXT_LIBS) $(OPENSSL_LIBS)
 
+bregtest:      bregtest.o ../lib/libbac.a        
+       $(CXX) $(LDFLAGS) -L../lib -o $@ bregtest.o -lbac -lm $(DLIB) $(LIBS) $(GETTEXT_LIBS) $(OPENSSL_LIBS)
+
 dbcheck: dbcheck.o ../lib/libbac.a ../cats/libsql.a $(DIRCONFOBJS)
        $(CXX) $(LDFLAGS) -L../lib -L../cats -o $@ dbcheck.o $(DIRCONFOBJS) -lsql -lbac -lm $(DB_LIBS) $(LIBS) $(GETTEXT_LIBS) $(OPENSSL_LIBS)
 
index 52073ea00fe7597506d6f8e1078777f9e80a93fe..edf7604e7d9bb34c1da4ee808e71da19b3577a79 100644 (file)
@@ -62,25 +62,11 @@ static void usage()
 
 int main(int argc, char *const *argv)
 {
-   char tab[500];
-   int len = bregexp_get_build_where_size("/tmp", "/tmp/toto", ".old");
-   
-   printf("%s\n", bregexp_build_where(tab, len, "/tmp", "/tmp/toto!", ".old"));
-   exit(0);
-
-
-   regex_t preg;
-   char prbuf[500];
    char *fname = NULL;
    char *expr = NULL;
-   int rc, ch;
+   int ch;
    char data[1000];
-   char pat[500];
    FILE *fd;
-   bool match_only = true;
-   int lineno;
-   bool no_linenos = false;
-   
 
    setlocale(LC_ALL, "");
    bindtextdomain("bacula", LOCALEDIR);