aboutsummaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorDimitri Sokolyuk <demon@dim13.org>2005-06-14 21:32:05 +0000
committerDimitri Sokolyuk <demon@dim13.org>2005-06-14 21:32:05 +0000
commitee4e223fe0637bd0ae28912cffb9123cb70a76f6 (patch)
treefeeaadd1903568446cdb3faa5975070f8f81cafe
parent5ed994a7aee700c4cad3707e76bc9c14a706d0dc (diff)
update copyright notice
-rw-r--r--include/tgeb.h2
-rw-r--r--include/tgebup.h2
-rw-r--r--lib/anbieter.c2
-rw-r--r--lib/ausland.c2
-rw-r--r--lib/common.c2
-rw-r--r--lib/tarife.c2
-rw-r--r--lib/update.c14
-rw-r--r--src/main.c4
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 <demon@vhost.dyndns.org>
+ * Copyright (c) 2004 Dimitri Sokolyuk <demon@vhost.dyndns.org>
*
* 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 <demon@vhost.dyndns.org>
+ * Copyright (c) 2004 Dimitri Sokolyuk <demon@vhost.dyndns.org>
*
* 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 <demon@vhost.dyndns.org>
+ * Copyright (c) 2004 Dimitri Sokolyuk <demon@vhost.dyndns.org>
*
* 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 <demon@vhost.dyndns.org>
+ * Copyright (c) 2004 Dimitri Sokolyuk <demon@vhost.dyndns.org>
*
* 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 <demon@vhost.dyndns.org>
+ * Copyright (c) 2004 Dimitri Sokolyuk <demon@vhost.dyndns.org>
*
* 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 <demon@vhost.dyndns.org>
+ * Copyright (c) 2004 Dimitri Sokolyuk <demon@vhost.dyndns.org>
*
* 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 <demon@vhost.dyndns.org>
+ * Copyright (c) 2004 Dimitri Sokolyuk <demon@vhost.dyndns.org>
*
* 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 <demon@vhost.dyndns.org>
+ * Copyright (c) 2004 Dimitri Sokolyuk <demon@vhost.dyndns.org>
*
* 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 <demon@vhost.dyndns.org>";
+ "Copyright (c) 2004 Dimitri Sokolyuk <demon@vhost.dyndns.org>";
void usage(void);
void prdt(AN_D *, TA_D *);