show index from File;
- Correct the Include syntax in the m4.xxx files in examples/conf
- Document JobStatus and Termination codes.
+- Fix the error with the "DVI file can't be opened" while
+ building the French PDF.
Priority:
send(ctx, "|");
sql_field_seek(mdb, 0);
for (i = 0; i < sql_num_fields(mdb); i++) {
- char fmtbuf[50];
Dmsg1(800, "list_result looking at field %d\n", i);
field = sql_fetch_field(mdb);
- bsnprintf(fmtbuf, sizeof(fmtbuf), "%%-%ds }", (int)field->max_length);
- bsnprintf(buf, sizeof(buf), fmtbuf, field->name);
+ bsnprintf(buf, sizeof(buf), " %-*s |", (int)field->max_length, field->name);
send(ctx, buf);
}
send(ctx, "\n");
int cflags;
int32_t currlen;
int base;
- int junk;
#ifdef FP_OUTPUT
LDOUBLE fvalue;
#endif
min = 10 * min + char_to_int(ch);
ch = *format++;
} else if (ch == '*') {
-#ifdef SECURITY_PROBLEM
min = va_arg(args, int);
-#else
- junk = va_arg(args, int);
-#endif
ch = *format++;
state = DP_S_DOT;
} else
max = 10 * max + char_to_int(ch);
ch = *format++;
} else if (ch == '*') {
-#ifdef SECURITY_PROBLEM
max = va_arg(args, int);
-#else
- junk = va_arg(args, int);
-#endif
ch = *format++;
state = DP_S_MOD;
} else
Technical notes on version 1.39
General:
+05Aug06
+kes Correct improperly formated list command output reported by Dan.
04Aug06
kes Correct despool time calculation.
03Aug06