2
0
mirror of https://gitlab.isc.org/isc-projects/dhcp synced 2025-08-29 13:28:14 +00:00

Fix up pointer type mismatch

This commit is contained in:
Ted Lemon 1996-05-16 07:22:00 +00:00
parent 01ce583c6d
commit 0ef9f561ae
2 changed files with 2 additions and 2 deletions

View File

@ -435,7 +435,7 @@ void abandon_lease (lease)
piaddr (lease -> ip_addr));
lt.hardware_addr.htype = -1;
lt.hardware_addr.hlen = 0;
lt.uid = (char *)0;
lt.uid = (unsigned char *)0;
lt.uid_len = 0;
supersede_lease (lease, &lt, 1);
}

View File

@ -435,7 +435,7 @@ void abandon_lease (lease)
piaddr (lease -> ip_addr));
lt.hardware_addr.htype = -1;
lt.hardware_addr.hlen = 0;
lt.uid = (char *)0;
lt.uid = (unsigned char *)0;
lt.uid_len = 0;
supersede_lease (lease, &lt, 1);
}