diff options
author | Jake Burkholder <jake@FreeBSD.org> | 2000-05-26 02:09:24 +0000 |
---|---|---|
committer | Jake Burkholder <jake@FreeBSD.org> | 2000-05-26 02:09:24 +0000 |
commit | e39756439c7255bc16ba14b7b991cb01ba1c93bd (patch) | |
tree | 112dfed9c5841280f457e0dca97e8de49e04ecd9 /usr.sbin/lpr/common_source | |
parent | 13c6acf19de074f64f9ff031a2e5e660c7957fd2 (diff) |
Notes
Diffstat (limited to 'usr.sbin/lpr/common_source')
-rw-r--r-- | usr.sbin/lpr/common_source/lp.h | 12 |
1 files changed, 6 insertions, 6 deletions
diff --git a/usr.sbin/lpr/common_source/lp.h b/usr.sbin/lpr/common_source/lp.h index e2bfc15e0e949..c7a960e8dfe4b 100644 --- a/usr.sbin/lpr/common_source/lp.h +++ b/usr.sbin/lpr/common_source/lp.h @@ -91,24 +91,24 @@ struct printer { * reversed in process. */ struct req_user { - TAILQ_ENTRY(struct req_user) ru_link; /* macro glue */ + TAILQ_ENTRY(req_user) ru_link; /* macro glue */ char ru_uname[1]; /* name of user */ }; -TAILQ_HEAD(req_user_head, struct req_user); +TAILQ_HEAD(req_user_head, req_user); struct req_file { - TAILQ_ENTRY(struct req_file) rf_link; /* macro glue */ + TAILQ_ENTRY(req_file) rf_link; /* macro glue */ char rf_type; /* type (lowercase cf file letter) of file */ char *rf_prettyname; /* user-visible name of file */ char rf_fname[1]; /* name of file */ }; -TAILQ_HEAD(req_file_head, struct req_file); +TAILQ_HEAD(req_file_head, req_file); struct req_jobid { - TAILQ_ENTRY(struct req_jobid) rj_link; /* macro glue */ + TAILQ_ENTRY(req_jobid) rj_link; /* macro glue */ int rj_job; /* job number */ }; -TAILQ_HEAD(req_jobid_head, struct req_jobid); +TAILQ_HEAD(req_jobid_head, req_jobid); /* * Encapsulate all the information relevant to a request in the |