Deleted Added
full compact
dumptab.c (13569) dumptab.c (13572)
1/*
2 * dumptab.c - handles dumping the database
3 */
4
5#include <sys/types.h>
6#include <netinet/in.h>
7#include <arpa/inet.h> /* inet_ntoa */
8

--- 45 unchanged lines hidden (view full) ---

54
55void
56dumptab(filename)
57 char *filename;
58{
59 int n;
60 struct host *hp;
61 FILE *fp;
1/*
2 * dumptab.c - handles dumping the database
3 */
4
5#include <sys/types.h>
6#include <netinet/in.h>
7#include <arpa/inet.h> /* inet_ntoa */
8

--- 45 unchanged lines hidden (view full) ---

54
55void
56dumptab(filename)
57 char *filename;
58{
59 int n;
60 struct host *hp;
61 FILE *fp;
62 time_t t;
62 long t;
63 /* Print symbols in alphabetical order for reader's convenience. */
64 static char legend[] = "#\n# Legend:\t(see bootptab.5)\n\
65#\tfirst field -- hostname (not indented)\n\
66#\tbf -- bootfile\n\
67#\tbs -- bootfile size in 512-octet blocks\n\
68#\tcs -- cookie servers\n\
69#\tdf -- dump file name\n\
70#\tdn -- domain name\n\

--- 312 unchanged lines hidden ---
63 /* Print symbols in alphabetical order for reader's convenience. */
64 static char legend[] = "#\n# Legend:\t(see bootptab.5)\n\
65#\tfirst field -- hostname (not indented)\n\
66#\tbf -- bootfile\n\
67#\tbs -- bootfile size in 512-octet blocks\n\
68#\tcs -- cookie servers\n\
69#\tdf -- dump file name\n\
70#\tdn -- domain name\n\

--- 312 unchanged lines hidden ---