Skip to content

Commit

Permalink
Tweak text.
Browse files Browse the repository at this point in the history
- Loose some copyright claims.
- Drop unused patch files
- Loose any references to Kern or Kern Sibbald in relation to bareos.
  • Loading branch information
Marco van Wieringen committed Feb 17, 2015
1 parent 4fcd9db commit cd1829e
Show file tree
Hide file tree
Showing 9 changed files with 6 additions and 58 deletions.
10 changes: 0 additions & 10 deletions src/cats/create_sqlite3_database.in.patch

This file was deleted.

13 changes: 0 additions & 13 deletions src/cats/grant_mysql_privileges.patch

This file was deleted.

12 changes: 0 additions & 12 deletions src/cats/make_catalog_backup.in.patch

This file was deleted.

11 changes: 0 additions & 11 deletions src/cats/make_sqlite3_tables.in.patch

This file was deleted.

10 changes: 5 additions & 5 deletions src/lib/tree.c
Expand Up @@ -463,23 +463,23 @@ int main(int argc, char *argv[])
*root->fname = 0;
root->fname_len = 0;

FillDirectoryTree("/home/kern/bareos/k", root, NULL);
FillDirectoryTree("/home/user/bareos", root, NULL);

for (node = first_tree_node(root); node; node=next_tree_node(node)) {
tree_getpath(node, buf, sizeof(buf));
Dmsg2(100, "%d: %s\n", node->FileIndex, buf);
}

node = (TREE_NODE *)root;
Pmsg0(000, "doing cd /home/kern/bareos/k/techlogs\n");
node = tree_cwd("/home/kern/bareos/k/techlogs", root, node);
Pmsg0(000, "doing cd /home/user/bareos/techlogs\n");
node = tree_cwd("/home/user/bareos/techlogs", root, node);
if (node) {
tree_getpath(node, buf, sizeof(buf));
Dmsg2(100, "findex=%d: cwd=%s\n", node->FileIndex, buf);
}

Pmsg0(000, "doing cd /home/kern/bareos/k/src/testprogs\n");
node = tree_cwd("/home/kern/bareos/k/src/testprogs", root, node);
Pmsg0(000, "doing cd /home/user/bareos/src/testprogs\n");
node = tree_cwd("/home/user/bareos/src/testprogs", root, node);
if (node) {
tree_getpath(node, buf, sizeof(buf));
Dmsg2(100, "findex=%d: cwd=%s\n", node->FileIndex, buf);
Expand Down
2 changes: 1 addition & 1 deletion src/plugins/fd/test-plugin-fd.c
Expand Up @@ -249,7 +249,7 @@ static bRC handlePluginEvent(bpContext *ctx, bEvent *event, void *value)
bfuncs->AddWild(ctx, "*.c", ' ');
bfuncs->AddWild(ctx, "*.cpp", ' ');
bfuncs->AddOptions(ctx, "ei"); /* exclude, ignore case */
bfuncs->AddExclude(ctx, "/home/kern/bareos/regress/README");
bfuncs->AddExclude(ctx, "/home/user/bareos/regress/README");
break;
case bEventRestoreObject:
{
Expand Down
2 changes: 0 additions & 2 deletions src/tests/bbatch.c
Expand Up @@ -2,8 +2,6 @@
BAREOS® - Backup Archiving REcovery Open Sourced
Copyright (C) 2001-2006 Free Software Foundation Europe e.V.
Copyright (C) 2011-2012 Planets Communications B.V.
Copyright (C) 2013-2013 Bareos GmbH & Co. KG
This program is Free Software; you can redistribute it and/or
modify it under the terms of version three of the GNU Affero General Public
Expand Down
2 changes: 0 additions & 2 deletions src/tests/cats_test.c
Expand Up @@ -2,8 +2,6 @@
BAREOS® - Backup Archiving REcovery Open Sourced
Copyright (C) 2011-2011 Free Software Foundation Europe e.V.
Copyright (C) 2011-2012 Planets Communications B.V.
Copyright (C) 2013-2013 Bareos GmbH & Co. KG
This program is Free Software; you can redistribute it and/or
modify it under the terms of version three of the GNU Affero General Public
Expand Down
2 changes: 0 additions & 2 deletions src/tests/testls.c
Expand Up @@ -2,8 +2,6 @@
BAREOS® - Backup Archiving REcovery Open Sourced
Copyright (C) 2000-2010 Free Software Foundation Europe e.V.
Copyright (C) 2011-2012 Planets Communications B.V.
Copyright (C) 2013-2013 Bareos GmbH & Co. KG
This program is Free Software; you can redistribute it and/or
modify it under the terms of version three of the GNU Affero General Public
Expand Down

0 comments on commit cd1829e

Please sign in to comment.