diff options
author | Russ Dill | 2003-12-16 01:33:38 +0000 |
---|---|---|
committer | Russ Dill | 2003-12-16 01:33:38 +0000 |
commit | a3170d5aab8a13006fd707666533acab9c164831 (patch) | |
tree | a06a6ea5812a2d1152788755b042264b988e7fb2 /networking | |
parent | 8f4312693464a266117238bade4a9c64ba1f3340 (diff) | |
download | busybox-a3170d5aab8a13006fd707666533acab9c164831.zip busybox-a3170d5aab8a13006fd707666533acab9c164831.tar.gz |
whoops
Diffstat (limited to 'networking')
-rw-r--r-- | networking/udhcp/files.c | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/networking/udhcp/files.c b/networking/udhcp/files.c index e200246..f6003ff 100644 --- a/networking/udhcp/files.c +++ b/networking/udhcp/files.c @@ -248,7 +248,7 @@ void write_leases(void) else leases[i].expires -= curr; } /* else stick with the time we got */ leases[i].expires = htonl(leases[i].expires); - fwrite(leases[i], sizeof(sturct dhcpOfferedAddr), 1, fp); + fwrite(&leases[i], sizeof(struct dhcpOfferedAddr), 1, fp); /* Then restore it when done. */ leases[i].expires = tmp_time; |