diff --git a/.gitignore b/.gitignore index 8f0a062..8479851 100644 --- a/.gitignore +++ b/.gitignore @@ -1,2 +1,3 @@ .repo-build .repo-build.tmp +RCS diff --git a/ezmlm-x/auto-str.c b/ezmlm-x/auto-str.c index 65d5056..831fd98 100644 --- a/ezmlm-x/auto-str.c +++ b/ezmlm-x/auto-str.c @@ -1,17 +1,5 @@ /* - * $Log: auto-str.c,v $ - * Revision 1.8 2020-11-24 13:44:02+05:30 Cprogrammer - * removed exit.h - * - * Revision 1.7 2020-06-17 16:58:35+05:30 Cprogrammer - * make output readable - * - * Revision 1.6 2004-10-22 15:34:20+05:30 Cprogrammer - * replaced readwrite.h with unistd.h - * - * Revision 1.5 2004-07-17 21:15:59+05:30 Cprogrammer - * added RCS log - * + * $Id: auto-str.c,v 1.1 2025-01-22 11:21:30+05:30 Cprogrammer Exp mbhangui $ */ #include #include @@ -79,3 +67,21 @@ main(int argc, char **argv) /*- Not reached */ return(0); } +/* + * $Log: auto-str.c,v $ + * Revision 1.1 2025-01-22 11:21:30+05:30 Cprogrammer + * Fixes for gcc14 + * + * Revision 1.8 2020-11-24 13:44:02+05:30 Cprogrammer + * removed exit.h + * + * Revision 1.7 2020-06-17 16:58:35+05:30 Cprogrammer + * make output readable + * + * Revision 1.6 2004-10-22 15:34:20+05:30 Cprogrammer + * replaced readwrite.h with unistd.h + * + * Revision 1.5 2004-07-17 21:15:59+05:30 Cprogrammer + * added RCS log + * + */ diff --git a/ezmlm-x/cookie.c b/ezmlm-x/cookie.c index 405075d..7dd8b24 100644 --- a/ezmlm-x/cookie.c +++ b/ezmlm-x/cookie.c @@ -1,5 +1,5 @@ /* - * $Id: $ + * $Id: cookie.c,v 1.1 2025-01-22 11:21:30+05:30 Cprogrammer Exp mbhangui $ */ #include "cookie.h" #include "str.h" @@ -43,5 +43,8 @@ cookie(char *hash, char *key, size_t keylen, char *date, char *addr, char *actio } /* - * $Log: $ + * $Log: cookie.c,v $ + * Revision 1.1 2025-01-22 11:21:30+05:30 Cprogrammer + * Fixes for gcc14 + * */ diff --git a/ezmlm-x/doc/ChangeLog b/ezmlm-x/doc/ChangeLog index 401787a..3a07562 100644 --- a/ezmlm-x/doc/ChangeLog +++ b/ezmlm-x/doc/ChangeLog @@ -6,6 +6,8 @@ Release 1.1 Start 10/05/2024 End 06/08/2024 2. qmail.c: changed for envdir.c change in libqmail - 06/08/2024 3. qmail.c: fix compilation error for envdir call +- 22/01/2025 +4. Fixes for gcc14 * Tue Jan 02 2024 00:09:59 +0530 Manvendra Bhangui 7.2.3-1.1%{?dist} Release 1.1 Start 24/07/2023 End 31/12/2023 diff --git a/ezmlm-x/ezmlm-list.c b/ezmlm-x/ezmlm-list.c index db8784e..c53076d 100644 --- a/ezmlm-x/ezmlm-list.c +++ b/ezmlm-x/ezmlm-list.c @@ -1,5 +1,5 @@ /* - * $Id: $ + * $Id: ezmlm-list.c,v 1.1 2025-01-22 11:21:30+05:30 Cprogrammer Exp mbhangui $ */ #include #include "stralloc.h" @@ -67,5 +67,8 @@ main(int argc, char **argv) } /* - * $Log: $ + * $Log: ezmlm-list.c,v $ + * Revision 1.1 2025-01-22 11:21:30+05:30 Cprogrammer + * Fixes for gcc14 + * */ diff --git a/ezmlm-x/ezmlm-make.c b/ezmlm-x/ezmlm-make.c index 6461f4c..e32ff59 100644 --- a/ezmlm-x/ezmlm-make.c +++ b/ezmlm-x/ezmlm-make.c @@ -1,5 +1,5 @@ /* - * $Id: $ + * $Id: ezmlm-make.c,v 1.1 2025-01-22 11:21:28+05:30 Cprogrammer Exp mbhangui $ */ #include #include @@ -549,5 +549,8 @@ any of my command addresses.\n\ } /* - * $Log: $ + * $Log: ezmlm-make.c,v $ + * Revision 1.1 2025-01-22 11:21:28+05:30 Cprogrammer + * Fixes for gcc14 + * */ diff --git a/ezmlm-x/ezmlm-manage.c b/ezmlm-x/ezmlm-manage.c index afb4a1d..e160eb3 100644 --- a/ezmlm-x/ezmlm-manage.c +++ b/ezmlm-x/ezmlm-manage.c @@ -1,5 +1,5 @@ /* - * $Id: $ + * $Id: ezmlm-manage.c,v 1.1 2025-01-22 11:21:28+05:30 Cprogrammer Exp mbhangui $ */ #include #include @@ -366,9 +366,11 @@ main(int argc, char **argv) copy("text/top"); if (str_equal(action, "-subscribe")) copy("text/sub-confirm"); - else if (str_equal(action, "-unsubscribe")) + else + if (str_equal(action, "-unsubscribe")) copy("text/unsub-confirm"); - else if (str_start(action, "-sc.")) { + else + if (str_start(action, "-sc.")) { if (!flaghashok) copy("text/sub-bad"); else @@ -385,7 +387,8 @@ main(int argc, char **argv) copy("text/sub-nop"); break; } - } else if (str_start(action, "-uc.")) { + } else + if (str_start(action, "-uc.")) { if (!flaghashok) copy("text/unsub-bad"); else @@ -402,7 +405,8 @@ main(int argc, char **argv) copy("text/unsub-nop"); break; } - } else if (str_start(action, "-get.")) { + } else + if (str_start(action, "-get.")) { unsigned long u; struct stat st; char ch; @@ -430,7 +434,8 @@ main(int argc, char **argv) else { if (fstat(fd, &st) == -1) copy("text/get-bad"); - else if (!(st.st_mode & 0100)) + else + if (!(st.st_mode & 0100)) copy("text/get-bad"); else { substdio_fdbuf(&sstext, (ssize_t(*)(int, char *, size_t)) read, fd, textbuf, sizeof (textbuf)); @@ -488,5 +493,8 @@ main(int argc, char **argv) } /* - * $Log: $ + * $Log: ezmlm-manage.c,v $ + * Revision 1.1 2025-01-22 11:21:28+05:30 Cprogrammer + * Fixes for gcc14 + * */ diff --git a/ezmlm-x/ezmlm-reject.c b/ezmlm-x/ezmlm-reject.c index 9a616c1..79a3264 100644 --- a/ezmlm-x/ezmlm-reject.c +++ b/ezmlm-x/ezmlm-reject.c @@ -1,5 +1,5 @@ /* - * $Id: $ + * $Id: ezmlm-reject.c,v 1.1 2025-01-22 11:21:28+05:30 Cprogrammer Exp mbhangui $ */ #include #include "strerr.h" @@ -97,5 +97,8 @@ Send an empty message to ...-help@... for automated assistance."); } /* - * $Log: $ + * $Log: ezmlm-reject.c,v $ + * Revision 1.1 2025-01-22 11:21:28+05:30 Cprogrammer + * Fixes for gcc14 + * */ diff --git a/ezmlm-x/ezmlm-return.c b/ezmlm-x/ezmlm-return.c index a3236e8..38db928 100644 --- a/ezmlm-x/ezmlm-return.c +++ b/ezmlm-x/ezmlm-return.c @@ -1,5 +1,5 @@ /* - * $Id: $ + * $Id: ezmlm-return.c,v 1.1 2025-01-22 11:21:28+05:30 Cprogrammer Exp mbhangui $ */ #include #include @@ -471,5 +471,8 @@ main(int argc, char **argv) } /* - * $Log: $ + * $Log: ezmlm-return.c,v $ + * Revision 1.1 2025-01-22 11:21:28+05:30 Cprogrammer + * Fixes for gcc14 + * */ diff --git a/ezmlm-x/ezmlm-send.c b/ezmlm-x/ezmlm-send.c index 40c3416..e2fc95f 100644 --- a/ezmlm-x/ezmlm-send.c +++ b/ezmlm-x/ezmlm-send.c @@ -1,5 +1,5 @@ /* - * $Id: $ + * $Id: ezmlm-send.c,v 1.1 2025-01-22 11:21:28+05:30 Cprogrammer Exp mbhangui $ */ #include #include @@ -344,5 +344,8 @@ main(int argc, char **argv) } /* - * $Log: $ + * $Log: ezmlm-send.c,v $ + * Revision 1.1 2025-01-22 11:21:28+05:30 Cprogrammer + * Fixes for gcc14 + * */ diff --git a/ezmlm-x/ezmlm-sub.c b/ezmlm-x/ezmlm-sub.c index 53cd4a8..fbb0271 100644 --- a/ezmlm-x/ezmlm-sub.c +++ b/ezmlm-x/ezmlm-sub.c @@ -1,5 +1,5 @@ /* - * $Id: $ + * $Id: ezmlm-sub.c,v 1.1 2025-01-22 11:21:30+05:30 Cprogrammer Exp mbhangui $ */ #include #include "strerr.h" @@ -36,5 +36,8 @@ main(int argc, char **argv) } /* - * $Log: $ + * $Log: ezmlm-sub.c,v $ + * Revision 1.1 2025-01-22 11:21:30+05:30 Cprogrammer + * Fixes for gcc14 + * */ diff --git a/ezmlm-x/ezmlm-unsub.c b/ezmlm-x/ezmlm-unsub.c index 6e4d37c..6b7ff38 100644 --- a/ezmlm-x/ezmlm-unsub.c +++ b/ezmlm-x/ezmlm-unsub.c @@ -1,5 +1,5 @@ /* - * $Id: $ + * $Id: ezmlm-unsub.c,v 1.1 2025-01-22 11:21:30+05:30 Cprogrammer Exp mbhangui $ */ #include #include "strerr.h" @@ -37,5 +37,8 @@ main(int argc, char **argv) } /* - * $Log: $ + * $Log: ezmlm-unsub.c,v $ + * Revision 1.1 2025-01-22 11:21:30+05:30 Cprogrammer + * Fixes for gcc14 + * */ diff --git a/ezmlm-x/ezmlm-warn.c b/ezmlm-x/ezmlm-warn.c index c5209bc..ccabdc3 100644 --- a/ezmlm-x/ezmlm-warn.c +++ b/ezmlm-x/ezmlm-warn.c @@ -1,5 +1,5 @@ /* - * $Id: $ + * $Id: ezmlm-warn.c,v 1.1 2025-01-22 11:21:28+05:30 Cprogrammer Exp mbhangui $ */ #include #include @@ -296,5 +296,8 @@ main(int argc, char **argv) } /* - * $Log: $ + * $Log: ezmlm-warn.c,v $ + * Revision 1.1 2025-01-22 11:21:28+05:30 Cprogrammer + * Fixes for gcc14 + * */ diff --git a/ezmlm-x/ezmlm-weed.c b/ezmlm-x/ezmlm-weed.c index 5a2152f..6416295 100644 --- a/ezmlm-x/ezmlm-weed.c +++ b/ezmlm-x/ezmlm-weed.c @@ -1,5 +1,5 @@ /* - * $ID: $ + * $Id: ezmlm-weed.c,v 1.1 2025-01-22 11:21:28+05:30 Cprogrammer Exp mbhangui $ */ #include #include "stralloc.h" @@ -85,5 +85,8 @@ main(int argc, char **argv) } /* - * $Log: $ + * $Log: ezmlm-weed.c,v $ + * Revision 1.1 2025-01-22 11:21:28+05:30 Cprogrammer + * Fixes for gcc14 + * */ diff --git a/ezmlm-x/getconf.c b/ezmlm-x/getconf.c index 9237577..fd92595 100644 --- a/ezmlm-x/getconf.c +++ b/ezmlm-x/getconf.c @@ -1,5 +1,5 @@ /* - * $Id: $ + * $Id: getconf.c,v 1.1 2025-01-22 11:21:30+05:30 Cprogrammer Exp mbhangui $ */ #include "stralloc.h" #include "slurp.h" @@ -63,5 +63,8 @@ getconf_line(stralloc *sa, char *fn, int flagrequired, char *fatal, char *dir) } /* - * $Log: $ + * $Log: getconf.c,v $ + * Revision 1.1 2025-01-22 11:21:30+05:30 Cprogrammer + * Fixes for gcc14 + * */ diff --git a/ezmlm-x/getconf.h b/ezmlm-x/getconf.h index 68aac2f..9e0e6f5 100644 --- a/ezmlm-x/getconf.h +++ b/ezmlm-x/getconf.h @@ -1,5 +1,5 @@ /* - * $Id: $ + * $Id: getconf.h,v 1.1 2025-01-22 11:21:31+05:30 Cprogrammer Exp mbhangui $ */ #ifndef GETCONF_H #define GETCONF_H @@ -10,5 +10,8 @@ extern int getconf_line(stralloc *, char *, int, char *, char *); #endif /* - * $Log: $ + * $Log: getconf.h,v $ + * Revision 1.1 2025-01-22 11:21:31+05:30 Cprogrammer + * Fixes for gcc14 + * */ diff --git a/ezmlm-x/install.c b/ezmlm-x/install.c index 5cc58c8..b95c861 100644 --- a/ezmlm-x/install.c +++ b/ezmlm-x/install.c @@ -1,5 +1,5 @@ /* - * $Id: $ + * $Id: install.c,v 1.1 2025-01-22 11:24:17+05:30 Cprogrammer Exp mbhangui $ */ #include #include @@ -167,5 +167,8 @@ main(int argc, char **argv) } /* - * $Log: $ + * $Log: install.c,v $ + * Revision 1.1 2025-01-22 11:24:17+05:30 Cprogrammer + * Initial revision + * */ diff --git a/ezmlm-x/issub.c b/ezmlm-x/issub.c index b4ab063..251119a 100644 --- a/ezmlm-x/issub.c +++ b/ezmlm-x/issub.c @@ -1,5 +1,5 @@ /* - * $Log: $ + * $Id: issub.c,v 1.1 2025-01-22 11:24:58+05:30 Cprogrammer Exp mbhangui $ */ #include #include "stralloc.h" @@ -103,5 +103,8 @@ issub(char *userhost) } /* - * $Log: $ + * $Log: issub.c,v $ + * Revision 1.1 2025-01-22 11:24:58+05:30 Cprogrammer + * Initial revision + * */ diff --git a/ezmlm-x/issub.h b/ezmlm-x/issub.h index a5e20de..711195e 100644 --- a/ezmlm-x/issub.h +++ b/ezmlm-x/issub.h @@ -1,5 +1,5 @@ /* - * $Id: $ + * $Id: issub.h,v 1.1 2025-01-22 11:26:14+05:30 Cprogrammer Exp mbhangui $ */ #ifndef ISSUB_H #define ISSUB_H @@ -13,5 +13,8 @@ extern int issub(char *); #endif /* - * $Log: $ + * $Log: issub.h,v $ + * Revision 1.1 2025-01-22 11:26:14+05:30 Cprogrammer + * Initial revision + * */ diff --git a/ezmlm-x/log.c b/ezmlm-x/log.c index db907b9..16a9c62 100644 --- a/ezmlm-x/log.c +++ b/ezmlm-x/log.c @@ -1,5 +1,5 @@ /* - * $Id: $ + * $Id: log.c,v 1.1 2025-01-22 11:21:30+05:30 Cprogrammer Exp mbhangui $ */ #include #include "substdio.h" @@ -46,5 +46,8 @@ ezlog(char *event, char *addr) } /* - * $Log: $ + * $Log: log.c,v $ + * Revision 1.1 2025-01-22 11:21:30+05:30 Cprogrammer + * Fixes for gcc14 + * */ diff --git a/ezmlm-x/log.h b/ezmlm-x/log.h index f67de4c..d4197ee 100644 --- a/ezmlm-x/log.h +++ b/ezmlm-x/log.h @@ -9,5 +9,8 @@ extern void ezlog(char *, char *); #endif /* - * $Log: $ + * $Log: log.h,v $ + * Revision 1.1 2025-01-22 11:21:31+05:30 Cprogrammer + * Fixes for gcc14 + * */ diff --git a/ezmlm-x/qmail.c b/ezmlm-x/qmail.c index a36360f..bbb9c7e 100644 --- a/ezmlm-x/qmail.c +++ b/ezmlm-x/qmail.c @@ -1,5 +1,5 @@ /* - * $Id: $ + * $Id: qmail.c,v 1.1 2025-01-22 11:21:28+05:30 Cprogrammer Exp mbhangui $ */ #include #include @@ -89,7 +89,8 @@ qmail_open(struct qmail *qq) environ = e; else environ = orig_env; - } else if (errno != error_noent) + } else + if (errno != error_noent) _exit(55); if (!binqqargs[0]) binqqargs[0] = env_get("QMAILQUEUE"); @@ -204,5 +205,8 @@ qmail_close(struct qmail *qq) } /* - * $Log: $ + * $Log: qmail.c,v $ + * Revision 1.1 2025-01-22 11:21:28+05:30 Cprogrammer + * Fixes for gcc14 + * */ diff --git a/ezmlm-x/qmail.h b/ezmlm-x/qmail.h index de206f2..550232e 100644 --- a/ezmlm-x/qmail.h +++ b/ezmlm-x/qmail.h @@ -1,5 +1,5 @@ /* - * $Id: $ + * $Id: qmail.h,v 1.1 2025-01-22 11:21:31+05:30 Cprogrammer Exp mbhangui $ */ #ifndef QMAIL_H #define QMAIL_H @@ -42,5 +42,8 @@ extern unsigned long qmail_qp(struct qmail *); #endif /* - * $Log: $ + * $Log: qmail.h,v $ + * Revision 1.1 2025-01-22 11:21:31+05:30 Cprogrammer + * Fixes for gcc14 + * */ diff --git a/ezmlm-x/quote.c b/ezmlm-x/quote.c index 1727899..9f8c4ae 100644 --- a/ezmlm-x/quote.c +++ b/ezmlm-x/quote.c @@ -1,5 +1,5 @@ /* - * $Id: $ + * $Id: quote.c,v 1.1 2025-01-22 11:21:29+05:30 Cprogrammer Exp mbhangui $ */ #include "stralloc.h" #include "str.h" @@ -91,5 +91,8 @@ quote2(stralloc *sa, char *s) } /* - * $Log: $ + * $Log: quote.c,v $ + * Revision 1.1 2025-01-22 11:21:29+05:30 Cprogrammer + * Fixes for gcc14 + * */ diff --git a/ezmlm-x/quote.h b/ezmlm-x/quote.h index 19853e1..876009c 100644 --- a/ezmlm-x/quote.h +++ b/ezmlm-x/quote.h @@ -1,5 +1,5 @@ /* - * $Id: $ + * $Id: quote.h,v 1.1 2025-01-22 11:21:31+05:30 Cprogrammer Exp mbhangui $ */ #ifndef QUOTE_H #define QUOTE_H @@ -12,5 +12,8 @@ extern int quote2(stralloc *, char *); #endif /* - * $Log: $ + * $Log: quote.h,v $ + * Revision 1.1 2025-01-22 11:21:31+05:30 Cprogrammer + * Fixes for gcc14 + * */ diff --git a/ezmlm-x/slurp.c b/ezmlm-x/slurp.c index 089bc73..8268c90 100644 --- a/ezmlm-x/slurp.c +++ b/ezmlm-x/slurp.c @@ -1,5 +1,5 @@ /* - * $Id: $ + * $Id: slurp.c,v 1.1 2025-01-22 11:21:29+05:30 Cprogrammer Exp mbhangui $ */ #include #include "slurpclose.h" @@ -24,5 +24,8 @@ slurp(char *fn, stralloc *sa, size_t bufsize) } /* - * $Log: $ + * $Log: slurp.c,v $ + * Revision 1.1 2025-01-22 11:21:29+05:30 Cprogrammer + * Fixes for gcc14 + * */ diff --git a/ezmlm-x/slurpclose.c b/ezmlm-x/slurpclose.c index 365822c..d804f16 100644 --- a/ezmlm-x/slurpclose.c +++ b/ezmlm-x/slurpclose.c @@ -1,5 +1,5 @@ /* - * $Id: $ + * $Id: slurpclose.c,v 1.1 2025-01-22 11:21:29+05:30 Cprogrammer Exp mbhangui $ */ #include #include "stralloc.h" @@ -28,5 +28,8 @@ slurpclose(int fd, stralloc *sa, int bufsize) } /* - * $Log: $ + * $Log: slurpclose.c,v $ + * Revision 1.1 2025-01-22 11:21:29+05:30 Cprogrammer + * Fixes for gcc14 + * */ diff --git a/ezmlm-x/slurpclose.h b/ezmlm-x/slurpclose.h index f76c925..d2c4f71 100644 --- a/ezmlm-x/slurpclose.h +++ b/ezmlm-x/slurpclose.h @@ -1,5 +1,5 @@ /* - * $Id: $ + * $Id: slurpclose.h,v 1.1 2025-01-22 11:21:31+05:30 Cprogrammer Exp mbhangui $ */ #ifndef SLURPCLOSE_H #define SLURPCLOSE_H diff --git a/ezmlm-x/subscribe.c b/ezmlm-x/subscribe.c index 417e2ff..17b3b42 100644 --- a/ezmlm-x/subscribe.c +++ b/ezmlm-x/subscribe.c @@ -1,5 +1,5 @@ /* - * $Id: $ + * $Id: subscribe.c,v 1.1 2025-01-22 11:24:35+05:30 Cprogrammer Exp mbhangui $ */ #include #include "stralloc.h" @@ -162,5 +162,8 @@ subscribe(char *userhost, int flagadd) } /* - * $Log: $ + * $Log: subscribe.c,v $ + * Revision 1.1 2025-01-22 11:24:35+05:30 Cprogrammer + * Initial revision + * */ diff --git a/ezmlm-x/subscribe.h b/ezmlm-x/subscribe.h index 60481bc..319ba60 100644 --- a/ezmlm-x/subscribe.h +++ b/ezmlm-x/subscribe.h @@ -1,5 +1,5 @@ /* - * $Id: $ + * $Id: subscribe.h,v 1.1 2025-01-22 11:26:25+05:30 Cprogrammer Exp mbhangui $ */ #ifndef SUBSCRIBE_H #define SUBSCRIBE_H @@ -13,5 +13,8 @@ extern int subscribe(char *, int); #endif /* - * $Log: $ + * $Log: subscribe.h,v $ + * Revision 1.1 2025-01-22 11:26:25+05:30 Cprogrammer + * Initial revision + * */ diff --git a/ezmlm-x/surf.c b/ezmlm-x/surf.c index 6abc8b3..2723bf3 100644 --- a/ezmlm-x/surf.c +++ b/ezmlm-x/surf.c @@ -1,5 +1,5 @@ /* - * $Id: $ + * $Id: surf.c,v 1.1 2025-01-22 11:21:29+05:30 Cprogrammer Exp mbhangui $ * * 19970320, overlap allowed 19970406 */ @@ -38,5 +38,8 @@ surf(uint32 out[8], uint32 in[12], uint32 seed[32]) } /* - * $Log: $ + * $Log: surf.c,v $ + * Revision 1.1 2025-01-22 11:21:29+05:30 Cprogrammer + * Fixes for gcc14 + * */ diff --git a/ezmlm-x/surf.h b/ezmlm-x/surf.h index ecae837..9124057 100644 --- a/ezmlm-x/surf.h +++ b/ezmlm-x/surf.h @@ -1,5 +1,5 @@ /* - * $Id: $ + * $Id: surf.h,v 1.1 2025-01-22 11:21:31+05:30 Cprogrammer Exp mbhangui $ */ #ifndef SURF_H #define SURF_H @@ -10,5 +10,8 @@ extern void surf(uint32 out[8], uint32 in[12], uint32 seed[32]); #endif /* - * $Log: $ + * $Log: surf.h,v $ + * Revision 1.1 2025-01-22 11:21:31+05:30 Cprogrammer + * Fixes for gcc14 + * */ diff --git a/ezmlm-x/surfpcs.c b/ezmlm-x/surfpcs.c index 7ea86f6..8c3ca33 100644 --- a/ezmlm-x/surfpcs.c +++ b/ezmlm-x/surfpcs.c @@ -1,5 +1,5 @@ /* - * $Id: $ + * $Id: surfpcs.c,v 1.1 2025-01-22 11:21:29+05:30 Cprogrammer Exp mbhangui $ * * XXX: this needs testing */ @@ -66,5 +66,8 @@ surfpcs_out(surfpcs *s, unsigned char h[32]) } /* - * $Log: $ + * $Log: surfpcs.c,v $ + * Revision 1.1 2025-01-22 11:21:29+05:30 Cprogrammer + * Fixes for gcc14 + * */ diff --git a/ezmlm-x/surfpcs.h b/ezmlm-x/surfpcs.h index f0f846c..6c45b86 100644 --- a/ezmlm-x/surfpcs.h +++ b/ezmlm-x/surfpcs.h @@ -1,5 +1,5 @@ /* - * $Id: $ + * $Id: surfpcs.h,v 1.1 2025-01-22 11:21:31+05:30 Cprogrammer Exp mbhangui $ */ #ifndef SURFPCS_H #define SURFPCS_H @@ -24,5 +24,8 @@ extern void surfpcs_out(surfpcs *s, unsigned char h[32]); #endif /* - * $Log: $ + * $Log: surfpcs.h,v $ + * Revision 1.1 2025-01-22 11:21:31+05:30 Cprogrammer + * Fixes for gcc14 + * */ diff --git a/ezmlm-x/trycpp.c b/ezmlm-x/trycpp.c index d7d83ad..50b4726 100644 --- a/ezmlm-x/trycpp.c +++ b/ezmlm-x/trycpp.c @@ -1,3 +1,6 @@ +/* + * $Id: trycpp.c,v 1.1 2025-01-22 11:21:29+05:30 Cprogrammer Exp mbhangui $ + */ void main() { #ifdef NeXT @@ -5,3 +8,10 @@ void main() #endif printf("unknown\n"); exit(0); } + +/* + * $Log: trycpp.c,v $ + * Revision 1.1 2025-01-22 11:21:29+05:30 Cprogrammer + * Fixes for gcc14 + * + */ diff --git a/ezmlm-x/tryulong32.c b/ezmlm-x/tryulong32.c index a108076..1aebaa9 100644 --- a/ezmlm-x/tryulong32.c +++ b/ezmlm-x/tryulong32.c @@ -1,3 +1,6 @@ +/* + * $Id: tryulong32.c,v 1.1 2025-01-22 11:21:29+05:30 Cprogrammer Exp mbhangui $ + */ void main() { unsigned long u; @@ -9,3 +12,10 @@ void main() if (!u) _exit(0); _exit(1); } + +/* + * $Log: tryulong32.c,v $ + * Revision 1.1 2025-01-22 11:21:29+05:30 Cprogrammer + * Fixes for gcc14 + * + */