This commit was generated by cvs2svn to compensate for changes in r68325,
which included commits to RCS files with non-trunk default branches.
This commit is contained in:
commit
235854e865
@ -553,9 +553,13 @@ char *pretty_print_option (code, data, len, emit_commas, emit_quotes)
|
||||
for (; dp < data + len; dp++) {
|
||||
if (!isascii (*dp) ||
|
||||
!isprint (*dp)) {
|
||||
sprintf (op, "\\%03o",
|
||||
*dp);
|
||||
op += 4;
|
||||
/* Skip trailing NUL. */
|
||||
if (dp + 1 != data + len ||
|
||||
*dp != 0) {
|
||||
sprintf (op, "\\%03o",
|
||||
*dp);
|
||||
op += 4;
|
||||
}
|
||||
} else if (*dp == '"' ||
|
||||
*dp == '\'' ||
|
||||
*dp == '$' ||
|
||||
|
@ -1,3 +1,3 @@
|
||||
/* Current version of ISC DHCP Distribution. */
|
||||
|
||||
#define DHCP_VERSION "2.0pl5"
|
||||
#define DHCP_VERSION "2.0pl5+v3_fixes"
|
||||
|
Loading…
Reference in New Issue
Block a user