isync

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

commit 0dfbf6f6fba286e901cfdf52157cf35e106da583
parent d34baeb88607706ab5eec8f049cdc900030f2601
Author: Oswald Buddenhagen <ossi@users.sf.net>
Date:   Sat, 12 Apr 2014 13:08:10 +0200

remove pointless pointer assignment

Diffstat:
Msrc/compat/main.c | 2+-
1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/src/compat/main.c b/src/compat/main.c @@ -307,7 +307,7 @@ main( int argc, char **argv ) if (!all && !o2o) for (i = optind; argv[i]; i++) - if (!(box = find_box( argv[i] ))) { + if (!find_box( argv[i] )) { box = nfmalloc( sizeof(config_t) ); memcpy( box, &global, sizeof(config_t) ); box->path = argv[i];