[dhcp-agent-commits] dhcp-agent/src dhcp-client.c,1.24,1.25
Status: Alpha
Brought to you by:
actmodern
From: <act...@us...> - 2003-05-19 23:43:07
|
Update of /cvsroot/dhcp-agent/dhcp-agent/src In directory sc8-pr-cvs1:/tmp/cvs-serv28395/src Modified Files: dhcp-client.c Log Message: updated usage Index: dhcp-client.c =================================================================== RCS file: /cvsroot/dhcp-agent/dhcp-agent/src/dhcp-client.c,v retrieving revision 1.24 retrieving revision 1.25 diff -C2 -d -r1.24 -r1.25 *** dhcp-client.c 15 May 2003 05:08:14 -0000 1.24 --- dhcp-client.c 19 May 2003 23:43:03 -0000 1.25 *************** *** 118,122 **** printf("usage: %s [-cpavkwt] [-l verbosity level] [-d directory]\n", s); printf("usage: %-*s [-i interface name] [ -m mac address ]\n", strlen(s), " "); - printf("usage: %-*s [-H hostname]\n", strlen(s), " "); exit(0); } --- 118,121 ---- *************** *** 502,509 **** break; - case 'd': - work_dir = xstrdup(optarg); - break; - /* setup options. */ --- 501,504 ---- *************** *** 531,541 **** case 'p': promiscuous = 1; - break; - - /* dhcp options which can be set on the command line. */ - case 'H': - /* glob_conf_set_val(optarg, CLIENT_HOSTNAME); */ - /* heh no more globconf -- FIXME: set this in client_conf later. */ - break; --- 526,529 ---- |