1
0
mirror of https://git.FreeBSD.org/src.git synced 2025-01-04 12:52:15 +00:00

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:
David E. O'Brien 2000-11-04 20:14:55 +00:00
commit 235854e865
Notes: svn2git 2020-12-20 02:59:44 +00:00
svn path=/head/; revision=68326
2 changed files with 8 additions and 4 deletions

View File

@ -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 == '$' ||

View File

@ -1,3 +1,3 @@
/* Current version of ISC DHCP Distribution. */
#define DHCP_VERSION "2.0pl5"
#define DHCP_VERSION "2.0pl5+v3_fixes"