isync

mailbox synchronization program
git clone https://git.code.sf.net/p/isync/isync
Log | Files | Refs | README | LICENSE

commit 9932352df02a328abd8dd229932babe892087050
parent c5f2943ff6f3d506a06a896ab634063bff223af0
Author: Oswald Buddenhagen <ossi@users.sf.net>
Date:   Sat, 12 Apr 2014 16:06:33 +0200

assert !where implying !pseudo

to help poor coverity.

Diffstat:
Msrc/config.c | 1+
1 file changed, 1 insertion(+), 0 deletions(-)

diff --git a/src/config.c b/src/config.c @@ -326,6 +326,7 @@ load_config( const char *where, int pseudo ) char buf[1024]; if (!where) { + assert( !pseudo ); nfsnprintf( path, sizeof(path), "%s/." EXE "rc", Home ); cfile.file = path; } else