From: Miloš Mulač Date: Wed, 11 Oct 2006 15:07:15 +0000 (+0000) Subject: small after-merge typos X-Git-Tag: mergeto_glite-lb-client_branch_2_3_0_0243_generic_23Nov06~17 X-Git-Url: http://scientific.zcu.cz/git/?a=commitdiff_plain;h=3cb0f00dcfd131d4291720429d22d5e0d5a3aada;p=jra1mw.git small after-merge typos --- diff --git a/org.glite.jp.client/src/jpimporter.c b/org.glite.jp.client/src/jpimporter.c index 02078a2..445ebd6 100644 --- a/org.glite.jp.client/src/jpimporter.c +++ b/org.glite.jp.client/src/jpimporter.c @@ -95,7 +95,7 @@ static struct option opts[] = { { "sandbox-mdir",1, NULL, 's'}, { "pidfile", 1, NULL, 'i'}, { "poll", 1, NULL, 't'}, - { "store", 1, NULL, 's'}, + { "store", 1, NULL, 'S'}, { NULL, 0, NULL, 0} }; @@ -561,11 +561,11 @@ static int sandbox_importer(void) if ( readnew ) ret = edg_wll_MaildirTransStart(sandbox_mdir, &msg, &fname); else ret = edg_wll_MaildirRetryTransStart(sandbox_mdir, (time_t)60, (time_t) 600,&msg, &fname); if ( !ret ) { - readnew = ~readnew; + readnew = !readnew; if ( readnew ) ret = edg_wll_MaildirTransStart(sandbox_mdir, &msg, &fname); else ret = edg_wll_MaildirRetryTransStart(sandbox_mdir, (time_t)60, (time_t) 600,&msg, &fname); if ( !ret ) { - readnew = ~readnew; + readnew = !readnew; return 0; } }