diff options
author | Russ Dill | 2003-12-16 02:30:53 +0000 |
---|---|---|
committer | Russ Dill | 2003-12-16 02:30:53 +0000 |
commit | 8b3845106a086ea78a24d7981ee41e76070e83fe (patch) | |
tree | a998a755c5f910484ce292ffe916f59027b89231 /networking/udhcp/dumpleases.c | |
parent | 4b77acafa6f8b907903ea4a140b7c4a314ed71b2 (diff) | |
download | busybox-8b3845106a086ea78a24d7981ee41e76070e83fe.zip busybox-8b3845106a086ea78a24d7981ee41e76070e83fe.tar.gz |
why the complication of a static string rather than a define? gcc isn't dumb
Diffstat (limited to 'networking/udhcp/dumpleases.c')
-rw-r--r-- | networking/udhcp/dumpleases.c | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/networking/udhcp/dumpleases.c b/networking/udhcp/dumpleases.c index 5cb3a15..4c1ee13 100644 --- a/networking/udhcp/dumpleases.c +++ b/networking/udhcp/dumpleases.c @@ -43,7 +43,7 @@ int main(int argc, char *argv[]) FILE *fp; int i, c, mode = REMAINING; long expires; - const char *file = leases_file; + const char *file = LEASES_FILE; struct dhcpOfferedAddr lease; struct in_addr addr; |