From ee4e223fe0637bd0ae28912cffb9123cb70a76f6 Mon Sep 17 00:00:00 2001 From: Dimitri Sokolyuk Date: Tue, 14 Jun 2005 21:32:05 +0000 Subject: update copyright notice --- include/tgeb.h | 2 +- include/tgebup.h | 2 +- lib/anbieter.c | 2 +- lib/ausland.c | 2 +- lib/common.c | 2 +- lib/tarife.c | 2 +- lib/update.c | 14 ++++++-------- src/main.c | 4 ++-- 8 files changed, 14 insertions(+), 16 deletions(-) diff --git a/include/tgeb.h b/include/tgeb.h index 9cfff56..1c18bf0 100644 --- a/include/tgeb.h +++ b/include/tgeb.h @@ -1,6 +1,6 @@ /* $Id$ */ /* - * Copyright (c) 2004 demon + * Copyright (c) 2004 Dimitri Sokolyuk * * Permission to use, copy, modify, and distribute this software for any * purpose with or without fee is hereby granted, provided that the above diff --git a/include/tgebup.h b/include/tgebup.h index 74fbf96..2eda10d 100644 --- a/include/tgebup.h +++ b/include/tgebup.h @@ -1,6 +1,6 @@ /* $Id$ */ /* - * Copyright (c) 2004 demon + * Copyright (c) 2004 Dimitri Sokolyuk * * Permission to use, copy, modify, and distribute this software for any * purpose with or without fee is hereby granted, provided that the above diff --git a/lib/anbieter.c b/lib/anbieter.c index 3a5ce49..81548b7 100644 --- a/lib/anbieter.c +++ b/lib/anbieter.c @@ -1,6 +1,6 @@ /* $Id$ */ /* - * Copyright (c) 2004 demon + * Copyright (c) 2004 Dimitri Sokolyuk * * Permission to use, copy, modify, and distribute this software for any * purpose with or without fee is hereby granted, provided that the above diff --git a/lib/ausland.c b/lib/ausland.c index ef2978a..6fac856 100644 --- a/lib/ausland.c +++ b/lib/ausland.c @@ -1,6 +1,6 @@ /* $Id$ */ /* - * Copyright (c) 2004 demon + * Copyright (c) 2004 Dimitri Sokolyuk * * Permission to use, copy, modify, and distribute this software for any * purpose with or without fee is hereby granted, provided that the above diff --git a/lib/common.c b/lib/common.c index 9de3d7f..3792f49 100644 --- a/lib/common.c +++ b/lib/common.c @@ -1,6 +1,6 @@ /* $Id$ */ /* - * Copyright (c) 2004 demon + * Copyright (c) 2004 Dimitri Sokolyuk * * Permission to use, copy, modify, and distribute this software for any * purpose with or without fee is hereby granted, provided that the above diff --git a/lib/tarife.c b/lib/tarife.c index 1c09efa..c873ad3 100644 --- a/lib/tarife.c +++ b/lib/tarife.c @@ -1,6 +1,6 @@ /* $Id$ */ /* - * Copyright (c) 2004 demon + * Copyright (c) 2004 Dimitri Sokolyuk * * Permission to use, copy, modify, and distribute this software for any * purpose with or without fee is hereby granted, provided that the above diff --git a/lib/update.c b/lib/update.c index 88fd27b..dfed858 100644 --- a/lib/update.c +++ b/lib/update.c @@ -1,6 +1,6 @@ /* $Id$ */ /* - * Copyright (c) 2004 demon + * Copyright (c) 2004 Dimitri Sokolyuk * * Permission to use, copy, modify, and distribute this software for any * purpose with or without fee is hereby granted, provided that the above @@ -146,16 +146,14 @@ unzip(void) return; } -static const char twiddle_chars[] = "|/-\\"; -static int twiddle_index = 0; - void twiddle(void) { - putchar(twiddle_chars[twiddle_index++]); + static const char tc[] = "|/-\\"; + static int ti = 0; + + putchar(tc[ti++]); putchar('\b'); fflush(stdout); - twiddle_index &= 3; + ti &= 3; } - - diff --git a/src/main.c b/src/main.c index 2a205d8..fb3d9ed 100644 --- a/src/main.c +++ b/src/main.c @@ -1,6 +1,6 @@ /* $Id$ */ /* - * Copyright (c) 2004 demon + * Copyright (c) 2004 Dimitri Sokolyuk * * Permission to use, copy, modify, and distribute this software for any * purpose with or without fee is hereby granted, provided that the above @@ -30,7 +30,7 @@ extern char *__progname; const char *copyright = "TGeb parasite 0.3.2 - " - "Copyright (c) 2004 demon "; + "Copyright (c) 2004 Dimitri Sokolyuk "; void usage(void); void prdt(AN_D *, TA_D *); -- cgit v1.2.3