isync

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

commit 2aae866e802d589bf403864b6146adb421f09e7c
parent 6b3b6f12bbbc9933e3f6414b97e23ec90781876f
Author: Oswald Buddenhagen <ossi@users.sf.net>
Date:   Thu,  2 Jun 2011 10:14:54 +0200

remove Ontty flag

i can't figure out why i added it in the first place. it doesn't seem to
make any sense ...

Diffstat:
Msrc/isync.h | 2+-
Msrc/main.c | 1-
Msrc/util.c | 6+++---
3 files changed, 4 insertions(+), 5 deletions(-)

diff --git a/src/isync.h b/src/isync.h @@ -391,7 +391,7 @@ void cram( const char *challenge, const char *user, const char *pass, #define VERYQUIET 16 #define KEEPJOURNAL 32 -extern int DFlags, Ontty; +extern int DFlags; void debug( const char *, ... ); void debugn( const char *, ... ); diff --git a/src/main.c b/src/main.c @@ -228,7 +228,6 @@ main( int argc, char **argv ) fputs( "Fatal: $HOME not set\n", stderr ); return 1; } - Ontty = isatty( 1 ) && isatty( 2 ); arc4_init(); memset( mvars, 0, sizeof(*mvars) ); diff --git a/src/util.c b/src/util.c @@ -31,7 +31,7 @@ #include <pwd.h> #include <ctype.h> -int DFlags, Ontty; +int DFlags; static int need_nl; void @@ -67,7 +67,7 @@ debugn( const char *msg, ... ) vprintf( msg, va ); va_end( va ); fflush( stdout ); - need_nl = Ontty; + need_nl = 1; } } @@ -95,7 +95,7 @@ infon( const char *msg, ... ) vprintf( msg, va ); va_end( va ); fflush( stdout ); - need_nl = Ontty; + need_nl = 1; } }