summaryrefslogtreecommitdiff
path: root/zwgc
diff options
context:
space:
mode:
authorGravatar John Kohl <jtkohl@mit.edu>1989-12-01 10:02:38 +0000
committerGravatar John Kohl <jtkohl@mit.edu>1989-12-01 10:02:38 +0000
commit0ac6ab57827c77b5aa1719c44d2bd04b363f1cbe (patch)
treea868ee2691113f63d3c6b6aa44f9cb97fd35a7b4 /zwgc
parent526071548604c0236e00cd4ddd578322f57d5f4a (diff)
remove printf() on reread
up version number
Diffstat (limited to 'zwgc')
-rw-r--r--zwgc/main.c5
1 files changed, 2 insertions, 3 deletions
diff --git a/zwgc/main.c b/zwgc/main.c
index 4f935e5..2380e61 100644
--- a/zwgc/main.c
+++ b/zwgc/main.c
@@ -79,7 +79,7 @@ static void fake_startup_packet()
{
ZNotice_t notice;
- var_set_variable("version", "0.3.7");
+ var_set_variable("version", "0.3.8");
bzero(&notice, sizeof(notice));
@@ -93,7 +93,7 @@ static void fake_startup_packet()
notice.z_port = 0;
notice.z_kind = ACKED;
notice.z_auth = ZAUTH_YES;
- notice.z_message = "Zwgc mark II version 0.3.7 now running...";
+ notice.z_message = "Zwgc mark II version 0.3.8 now running...";
notice.z_message_len = strlen(notice.z_message)+1;
notice_handler(&notice);
@@ -271,7 +271,6 @@ void notice_handler(notice)
printf("got control opcode <%s>.\n", control_opcode);
#endif
if (!strcasecmp(control_opcode, USER_REREAD)) {
- printf("zwgc: rereading descfile...\n");
read_in_description_file();
} else if (!strcasecmp(control_opcode, USER_SHUTDOWN))
zwgc_shutdown();