Navigation Menu

Skip to content

Commit

Permalink
Removed debug messages with level 0
Browse files Browse the repository at this point in the history
  • Loading branch information
pstorz authored and Marco van Wieringen committed May 27, 2015
1 parent b9ff539 commit c5ffb21
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions src/win32/findlib/win32.c
Expand Up @@ -265,7 +265,7 @@ bool expand_win32_fileset(findFILESET *fileset)
for (i = 0; i < fileset->include_list.size(); i++) {
incexe = (findINCEXE *)fileset->include_list.get(i);
foreach_dlist(node, &incexe->name_list) {
Dmsg1(000, "Checking %s\n", node->c_str());
Dmsg1(100, "Checking %s\n", node->c_str());
if (bstrcmp(node->c_str(), "/")) {
/*
* Request for auto expansion but no support for it.
Expand All @@ -292,7 +292,7 @@ bool expand_win32_fileset(findFILESET *fileset)
if (*(bp + 2) == '\\') {
*(bp + 2) = '/'; /* 'x:\' -> 'x:/' */
}
Dmsg1(000, "adding drive %s\n", bp);
Dmsg1(100, "adding drive %s\n", bp);
incexe->name_list.append(new_dlistString(bp));
}
if ((bp = strchr(bp, '\0'))) {
Expand Down

0 comments on commit c5ffb21

Please sign in to comment.