Virtual Private Server (VPS) Hosting provided by Central Point Networking cpnllc.com
For some reason, the "Nodelist" and "Recent Callers" features are not working.
| Sysop: | Ray Quinn |
|---|---|
| Location: | Visalia, CA |
| Users: | 60 |
| Nodes: | 10 (0 / 10) |
| Uptime: | 60:51:32 |
| Calls: | 12 |
| Files: | 12,938 |
| Messages: | 99,079 |
Check out the US 99 menu above for links to information about US Highway 99, after which the US 99 BBS is named.
Be sure to click on the Amateur Radio menu item above for packet BBSes, packet software, packet organizations, as well as packet how-to's. Also included is links to local and some not-so-local Amateur Radio Clubs.
% FDN: WCF: Wildcat!
% Coordinator: Ben Ritchey, 1:393/68, fido4cmech@lusfiber.net
% Internet: http://cmech.dynip.com/filebase.bbs/wcf4utl/
% http://cmech.dynip.com/filebase.bbs/wcf6utl/
Area WCF_4UTL 0 ! WCF: Wildcat! BBS v4.20 Utilities
Area WCF_6UTL 0 ! WCF: Winserver v6 Utilities
%
%
Thursday March 17 2016 21:34, you wrote to All:
% FDN: WCF: Wildcat!
% Coordinator: Ben Ritchey, 1:393/68, fido4cmech@lusfiber.net
% Internet: http://cmech.dynip.com/filebase.bbs/wcf4utl/
% http://cmech.dynip.com/filebase.bbs/wcf6utl/
Area WCF_4UTL 0 ! WCF: Wildcat! BBS v4.20 Utilities
Area WCF_6UTL 0 ! WCF: Winserver v6 Utilities
%
%
Just have a few through coming across and had a look at one namely PKTDATE
This has file dates of 2000 along with the C source code but is missing one file namely PKTDATE.lng, so it can not be compiled.
Pretty useless really ...
This has file dates of 2000 along with the C source code but is
missing one file namely PKTDATE.lng, so it can not be compiled.
There are other files that came through Ben's new areas that don't
exactly seem "new" either... not what I'd expected... though I do have
to examine the files in more detail.
This has file dates of 2000 along with the C source code but is
missing one file namely PKTDATE.lng, so it can not be compiled.
I will re-hatch this with the missing file if available ... these files were recently requested via Facebook for WC4 installations so I am making it available once again. :) The original full archive I believe is available in FIDO Coordinator Utilities area (Y2kTool6), but this is just a few "special" need programs for WC4 systems :)
There are other files that came through Ben's new areas that don't
exactly seem "new" either... not what I'd expected... though I do have
to examine the files in more detail.
None of the WC6 files are "new", except maybe one, but they are certainly new to FIDONet/Filegate. Is there a problem?
I saw Pkdate come through with the added file. Thanks. But correct
me if I'm wrong, what you released is really not changed source from
what was already sent out? Just kind of repackaged?
Don't forget Robert Wolfe has sent a lot of files through the
filegate. :)
Hi Ben,
This has file dates of 2000 along with the C source code but is
missing one file namely PKTDATE.lng, so it can not be compiled.
I will re-hatch this with the missing file if available ... these
files were recently requested via Facebook for WC4 installations so
I am making it available once again. :) The original full archive I
believe is available in FIDO Coordinator Utilities area (Y2kTool6),
but this is just a few "special" need programs for WC4 systems :)
I saw Pkdate come through with the added file. Thanks. But correct
me if I'm wrong, what you released is really not changed source from
what was already sent out? Just kind of repackaged?
There are other files that came through Ben's new areas that don't
exactly seem "new" either... not what I'd expected... though I do
have to examine the files in more detail.
None of the WC6 files are "new", except maybe one, but they are
certainly new to FIDONet/Filegate. Is there a problem?
Don't forget Robert Wolfe has sent a lot of files through the
filegate. :)
I haven't had time to check those WCF_6* files yet, but if Robert
hasn't sent you an update personally, the files might have possibly
come through the filegate already in the WINSERVER file echo (that's
in Win_FDN), or some others that Robert had released files in.
Just download my files.zip file, and do a grep for Robert Wolfe and
you will see what I mean.
Don't get me wrong, I think it would be GREAT if Robert is indeed
sending you new updates to the files he's already sent out, or if
you've updated source where possible/applicable, otherwise... <g>
We surely don't expect you to rehatch files that perhaps are new to
your system, but have already been been released, and I don't think
you want to do that either :) :)
Thanks Ben,
Janis
That said a working source copy of pktdate might be useful not that I
have seen bad dates on net or echo mail but ....
That said a working source copy of pktdate might be useful not
that I have seen bad dates on net or echo mail but ....
apparently you do not have folks feeding from your system that get
nostalgic and restore their old BBS setup from 15+ year old tapes or
CDs... BBS software that is not y2k compatible... software that mucks
up the year because the code doesn't do modulo arithmetic [eg: "year = (year-1900) mod 100"]... they get a result of 1xx when they subtract
1900 from the current year while trying to make it a two digit year
because they use math manipulation instead of string manipulation...
this is a quite common problem seen in C code of that era... it is
sometimes seen in code written in other languages but it is very
common in C code... today, that code will return 116 for the year
after they subtract 1900 and don't modulo it...
that's only ONE of the various problems that can happen... depending
on the rest of the processing it may make the PKT header one byte too
long or it could result in the last byte of the PKT header being truncated... then you get to the dates in the packed messages and they
could have headers that are one byte too long or be the proper length
but missing the last byte of the message header...
anyway, i thought i'd toss that out there to try to help explain the
problem of non-y2k compliant software and the possible date problems
they can cause...
For your interest here is the o/p from the attempt to compile it under Mageia v5 X64 Linux : -
-----------
[mbse@Applewood a]$ gcc pktdate.c
pktdate.c:38:6: warning: conflicting types for built-in function 'log'
void log(int loglevel, const char *fmt, ...);
^
pktdate.c: In function 'process_pkt':
pktdate.c:152:9: warning: overflow in implicit constant conversion [-Woverflow]
return FATAL_ERROR;
^
pktdate.c:159:9: warning: overflow in implicit constant conversion [-Woverflow]
return FATAL_ERROR;
^
/tmp/ccoDkgoG.o: In function `write_pkt':
pktdate.c:(.text+0xe5c): warning: the use of `tmpnam' is dangerous, better use
`mkstemp'
-----------
No I don't understand them other than a basic level :(
For your interest here is the o/p from the attempt to compile it under Mageia v5 X64 Linux : -
-----------
[mbse@Applewood a]$ gcc pktdate.c
pktdate.c:38:6: warning: conflicting types for built-in function 'log'
void log(int loglevel, const char *fmt, ...);
^
pktdate.c: In function 'process_pkt':
pktdate.c:152:9: warning: overflow in implicit constant conversion [-Woverflow]
return FATAL_ERROR;
^
pktdate.c:159:9: warning: overflow in implicit constant conversion [-Woverflow]
return FATAL_ERROR;
^
/tmp/ccoDkgoG.o: In function `write_pkt':
pktdate.c:(.text+0xe5c): warning: the use of `tmpnam' is dangerous, better use
`mkstemp'
-----------
No I don't understand them other than a basic level :(