]> git.sur5r.net Git - bacula/bacula/commitdiff
ebl cleanup
authorEric Bollengier <eric@eb.homelinux.org>
Sat, 31 Mar 2007 11:35:22 +0000 (11:35 +0000)
committerEric Bollengier <eric@eb.homelinux.org>
Sat, 31 Mar 2007 11:35:22 +0000 (11:35 +0000)
git-svn-id: https://bacula.svn.sourceforge.net/svnroot/bacula/trunk@4474 91ce42f0-d328-0410-95d8-f526ca767f89

bacula/patches/testing/breg.c

index a997942b90080e19e4602b5ca8474f78fafc006a..7dc2df94dcd7ac126147e834bf7795dc53c7aa39 100644 (file)
@@ -108,18 +108,6 @@ char *apply_bregexps(const char *fname, alist *bregexps)
    return ret;
 }
 
-char *get_next_bregexp(char *where)
-{
-   char sep;
-   char *after;
-   bool ok=false;
-
-   if (!where && !*where) {
-      return NULL;
-   }
-   
-}
-
 /* return an alist of BREGEXP or return NULL if it's not a 
  * where=!tmp!opt!ig,!temp!opt!i
  */
@@ -342,21 +330,3 @@ void BREGEXP::debug()
    printf("subst=[%s]\n", subst);
    printf("result=%s\n", result?result:"(null)");
 }
-
-#ifdef TEST
-
-int main(int argc, char **argv)
-{
-   BREGEXP *reg;
-   
-   reg = new_bregexp(argv[1]);
-
-   if (reg) {
-      reg->replace(argv[2]);
-      reg->debug();
-      printf("%s => %s\n", argv[1], reg->result);
-   }
-   exit(0);
-}
-
-#endif