Corrected Copyright notice and version string.
[infodrom/dtaus] / dtaus.c
diff --git a/dtaus.c b/dtaus.c
index 35ebd44..dff4ff4 100644 (file)
--- a/dtaus.c
+++ b/dtaus.c
@@ -98,7 +98,7 @@ dtaus_record recC[] = {
 #define C_EXT  11
 #define C_LEN  12
 
-#define MAX_TEXT 60
+#define MAX_TEXT 61
 
 dtaus_record recE[] = {
   {"Anzahl", 10, 7, IGN},
@@ -491,7 +491,7 @@ void dtaus_prepareC (char *buf, int normaltext, int maxtext)
   if (normaltext)
     appendix = 1;
   if (maxtext) {
-    res = div (maxtext, 4);
+    res = div (maxtext-1, 4);
     appendix += res.quot;
     if (res.rem) appendix++;
   }
@@ -644,7 +644,12 @@ int dtaus_writeC(FILE *f, char **valuesA, char **values, char **text)
   }
 
   if (text) {
-    res = div (maxtext, 4);
+    buf[recC[C_EXT].pos+0] = '0';
+    buf[recC[C_EXT].pos+1] = '2';
+    sprintf (tmp, "%-27s", upcase(text[0]));
+    for (i=0; i<recC[C_EXT].len-2; i++) buf[recC[C_EXT].pos+2+i] = tmp[i];
+
+    res = div (maxtext-1, 4);
     i=res.quot;
     if (res.rem) i++;
 
@@ -654,11 +659,11 @@ int dtaus_writeC(FILE *f, char **valuesA, char **values, char **text)
 
   fputs(buf, f);
 
-  if (text) {
-    fieldnr=0;
+  if (text && maxtext > 1) {
+    fieldnr=1;
     while (fieldnr<maxtext) {
       memset (appendix, ' ', 128);
-      appendix[128] = '0';
+      appendix[128] = '\0';
       for (k=0; k<4 && (fieldnr+k)<maxtext; k++) {
        sprintf (tmp, "%-27s", upcase(text[fieldnr+k]));
        appendix[k*29] = '0';
@@ -718,9 +723,10 @@ void dtaus2control (char *cdtaus, char *ccontrol)
   void *bufp;
   char tmp[30];
   char x[30];
-  int index, countC;
+  int index;
+  int extC;
 
-  if (!cdtaus) {{
+  if (!cdtaus) {
     if (!(fdtaus = fopen("DTAUS0.TXT", "r")))
       if (!(fdtaus = fopen("dtaus0.txt", "r")))
        return;
@@ -780,7 +786,10 @@ void dtaus2control (char *cdtaus, char *ccontrol)
   if (dtaus_nextrec(buf, fdtaus) == 1) {
     while (dtaus_char(buf,4) == 'C') {
       bufp = buf + 128;
-      if (dtaus_nextrec(bufp, fdtaus) == 1) {
+      if (dtaus_nextrec(bufp, fdtaus) != 1) {
+       fprintf (stderr, "Der zweite Teil der Transaktion ist kaputt.\n");
+       return;
+      } else {
        fprintf(fcontrol, "{\n");
 
        for (index=C_NAME; index <= C_EURO; index++) {
@@ -803,18 +812,34 @@ void dtaus2control (char *cdtaus, char *ccontrol)
          }
        }
 
-       countC = dtaus_int(buf, 185, 2);
-       countC = countC<3?0:countC-2/4;
-       countC += countC%4>0?1:0;
-       /* FIXME: Erweiterungsfelder werden ignoriert */
+       /* Number of extension records for this C record */
+       extC = dtaus_int(buf, 185, 2);
 
-       fprintf(fcontrol, "}\n");
-      } else {
-       fprintf (stderr, "Der zweite Teil der Transaktion ist kaputt.\n");
-       return;
       }
       if (dtaus_nextrec(buf, fdtaus) != 1)
        bzero (buf, sizeof(buf));
+
+      /*
+       * Are there extension records that we have to check?
+       *
+       * 2nd half of the AND is wrong, but since dtaus < 0.5 wrote 01
+       *     instead of 00 we should let it in so it can read its own
+       *     old files...  *sigh*
+       */
+      while (extC > 0 && dtaus_char(buf,4) != 'C' && dtaus_char(buf,4) != 'E') {
+       for (index=0; index < 4; index++) {
+         if ((dtaus_char(buf,index*29) != ' ')) {
+           bufp = buf + index*29;
+           memcpy(x, bufp, 2); tmp[2] = '\0'; bufp+=2;
+           memcpy(tmp, bufp, recC[C_TEXT].len-2); tmp[recC[C_TEXT].len-2] = '\0';
+           printctln(fcontrol, string2ext(x), strip_spaces(tmp));
+         }
+       }
+       if (dtaus_nextrec(buf, fdtaus) != 1)
+         bzero (buf, sizeof(buf));
+       extC--;
+      }
+      fprintf(fcontrol, "}\n");
     }
   }
 
@@ -824,7 +849,7 @@ void dtaus2control (char *cdtaus, char *ccontrol)
    */
   if (dtaus_char(buf,4) == 'E') {
     if (dtaus_char(buf,4) == 'E') {
-      fprintf(fcontrol, "END {\n");
+      fprintf(fcontrol, "\nEND {\n");
 
       for (index=E_COUNT; index <= E_BLZ; index++) {
        bufp = buf + recE[index].pos;