commit c9b52f5aec968e01efb971694af177d3463253c4
Author: Oswald Buddenhagen <o...@users.sf.net>
Date:   Thu Jan 13 12:23:23 2022 +0100

    fix maildir driver's debug flag
    
    copy-pasto; it certainly wasn't meant to respond to --debug-sync.
    the problem was barely noticeable, as the maildir driver's only debugs
    are in the rarely triggered rescan path, apart from the flags usually
    being used en bloc anyway.
    
    amends 0e1f8f9a.

 src/drv_maildir.c | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/src/drv_maildir.c b/src/drv_maildir.c
index 4082fb7e..30c0400d 100644
--- a/src/drv_maildir.c
+++ b/src/drv_maildir.c
@@ -113,7 +113,7 @@ debug( const char *msg, ... )
        va_list va;
 
        va_start( va, msg );
-       vdebug( DEBUG_SYNC, msg, va );
+       vdebug( DEBUG_MAILDIR, msg, va );
        va_end( va );
 }
 


_______________________________________________
isync-devel mailing list
isync-devel@lists.sourceforge.net
https://lists.sourceforge.net/lists/listinfo/isync-devel

Reply via email to