]> git.sesse.net Git - vlc/commitdiff
Remove dummy debug
authorRémi Denis-Courmont <rdenis@simphalempin.com>
Sat, 27 Sep 2008 16:29:30 +0000 (19:29 +0300)
committerRémi Denis-Courmont <rdenis@simphalempin.com>
Sat, 27 Sep 2008 16:29:30 +0000 (19:29 +0300)
modules/access/directory.c

index ed16b8fc3ac6268b40f0a40ceb734d1e49991218..1de68fa5ce9f55e445c2a0e86e41a907eda1843f 100644 (file)
@@ -244,7 +244,6 @@ static block_t *Block (access_t *p_access)
     access_sys_t *p_sys = p_access->p_sys;
     directory_t *current = p_sys->current;
 
-    msg_Dbg (p_access, "in Block");
     if (p_access->info.b_eof)
         return NULL;
 
@@ -285,7 +284,6 @@ static block_t *Block (access_t *p_access)
     }
 
     char *entry = utf8_readdir (current->handle);
-    msg_Dbg (p_access, "got file %s", entry);
     if (entry == NULL)
     {   /* End of directory, go back to parent */
         closedir (current->handle);
@@ -302,7 +300,6 @@ static block_t *Block (access_t *p_access)
             if (!block)
                 goto fatal;
             memcpy (block->p_buffer, footer, sizeof (footer) - 1);
-            msg_Dbg (p_access, "done");
             p_access->info.b_eof = true;
             return block;
         }
@@ -372,7 +369,6 @@ static block_t *Block (access_t *p_access)
                         "  <track><location>file://%s/%s</location></track>\n",
                         current->uri, encoded);
     free (encoded);
-    msg_Dbg (p_access, "%s", entry);
     if (len == -1)
         goto fatal;