Update of /cvsroot/dhcp-agent/dhcp-agent/src
In directory sc8-pr-cvs1:/tmp/cvs-serv32403/src
Modified Files:
dhcp-client-cache.c
Log Message:
corrective measure for temporarily new cache file format
Index: dhcp-client-cache.c
===================================================================
RCS file: /cvsroot/dhcp-agent/dhcp-agent/src/dhcp-client-cache.c,v
retrieving revision 1.5
retrieving revision 1.6
diff -C2 -d -r1.5 -r1.6
*** dhcp-client-cache.c 22 Nov 2002 00:53:17 -0000 1.5
--- dhcp-client-cache.c 22 Nov 2002 01:17:34 -0000 1.6
***************
*** 369,373 ****
}
! fprintf(fp, "\"%d\"=%s\n", opt->tag, val);
xfree(val);
}
--- 369,373 ----
}
! fprintf(fp, "%d=\"%s\" # %s\n", opt->tag, val, dhcp_options_strings[opt->tag]);
xfree(val);
}
|