patch kaffe main.c for 2000
Patrick Tullmann
tullmann at cs.utah.edu
Thu Mar 9 13:40:44 PST 2000
(I'm trying to clean up my local hacks on the Kaffe tree, thus the
forthcoming sequence of bizarre little patches.)
This patch brings the -version printed copyright notice in main.c up
into the new millennium. Doesn't need much of a ChangeLog entry,
methinks (alternatively, whomever checks it in can take credit.)
Heh, my first Y2K fix. :)
-Pat
Index: kaffe/kaffe/main.c
===================================================================
RCS file: /cvs/kaffe/kaffe/kaffe/kaffe/main.c,v
retrieving revision 1.27
diff -u -r1.27 main.c
--- kaffe/kaffe/main.c 2000/01/28 23:21:46 1.27
+++ kaffe/kaffe/main.c 2000/03/09 21:37:05
@@ -232,7 +232,7 @@
}
else if (strcmp(argv[i], "-version") == 0) {
fprintf(stderr, "Kaffe Virtual Machine\n");
- fprintf(stderr, "Copyright (c) 1996-1999\nTransvirtual Technologies, Inc. All rights reserved\n");
+ fprintf(stderr, "Copyright (c) 1996-2000\nTransvirtual Technologies, Inc. All rights reserved\n");
fprintf(stderr, "Engine: %s Version: %s Java Version: %s\n", engine_name, engine_version, java_version);
exit(0);
}
More information about the kaffe
mailing list