diff options
author | Kevin Steves <stevesk@cvs.openbsd.org> | 2006-12-15 14:09:14 +0000 |
---|---|---|
committer | Kevin Steves <stevesk@cvs.openbsd.org> | 2006-12-15 14:09:14 +0000 |
commit | cedb3930ed3b22477fdcc833ff2ae84dc0b999ce (patch) | |
tree | 396dc90b06291f53327d2428fe20f77aa247970e /sbin | |
parent | 37bfe5a9aba7c0e2fdbf14ec6df133736f5c133f (diff) |
typo in comment
Diffstat (limited to 'sbin')
-rw-r--r-- | sbin/dhclient/options.c | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/sbin/dhclient/options.c b/sbin/dhclient/options.c index eff67b1bfe3..dc6cbcda10c 100644 --- a/sbin/dhclient/options.c +++ b/sbin/dhclient/options.c @@ -1,4 +1,4 @@ -/* $OpenBSD: options.c,v 1.25 2005/08/22 20:30:52 krw Exp $ */ +/* $OpenBSD: options.c,v 1.26 2006/12/15 14:09:13 stevesk Exp $ */ /* DHCP options parsing and reassembly. */ @@ -156,7 +156,7 @@ parse_option_buffer(struct packet *packet, dhcp_options[code].name); /* * Copy and NUL-terminate the option (in case - * it's an ASCII string. + * it's an ASCII string). */ memcpy(t, &s[2], len); t[len] = 0; |