svn-cur
Klaus T. Aehlig
aehlig at linta.de
Sat Sep 22 09:43:41 UTC 2012
Dear Stephen,
> Can you think of a way that ctm_rmail would work in both instances
> (check both for 4 and 5 digit numbers, and check gz and xz)? I think
> that is what is needed if the tool is to be universal.
yes, you're right. One should take care of all cases. See a new version of
the patch attached.
Best,
Klaus
-------------- next part --------------
--- /usr/src/usr.sbin/ctm/ctm_rmail/ctm_rmail.c.orig 2012-09-22 08:59:08.000000000 +0200
+++ /usr/src/usr.sbin/ctm/ctm_rmail/ctm_rmail.c 2012-09-22 11:37:21.000000000 +0200
@@ -150,6 +150,7 @@
char fname[PATH_MAX];
char here[PATH_MAX];
char buf[PATH_MAX*2];
+ char *deltanamescheme[] = { "%s.%04d.gz", "%s.%04d.xz", "%s.%05d.gz", "%s.%05d.xz", NULL };
/*
* Grab a lock on the ctm mutex file so that we can be sure we are
@@ -198,10 +199,16 @@
*/
for (;;)
{
- sprintf(delta, "%s.%04d.gz", class, ++dn);
- mk_delta_name(fname, delta);
+ ++dn;
+ for (i=0; deltanamescheme[i]; i++)
+ {
+ sprintf(delta, deltanamescheme[i], class, dn);
+ mk_delta_name(fname, delta);
- if (stat(fname, &sb) < 0)
+ if (stat(fname, &sb) >= 0)
+ break;
+ }
+ if (!deltanamescheme[i])
break;
sprintf(buf, "(cd %s && ctm %s%s%s%s) 2>&1", base_dir,
More information about the ctm-users
mailing list