diff options
author | gad <gad@FreeBSD.org> | 2002-06-16 01:51:37 +0000 |
---|---|---|
committer | gad <gad@FreeBSD.org> | 2002-06-16 01:51:37 +0000 |
commit | 8da8ab73f43e5508fec262ba4a1d38aeaa8e55ef (patch) | |
tree | 72bc80e4e7f3be12737367388ae7f07ce5bb4df0 /usr.sbin/lpr/lpc/cmdtab.c | |
parent | 075d7239bd1571a0a5a991b23f18657c58988ded (diff) | |
download | FreeBSD-src-8da8ab73f43e5508fec262ba4a1d38aeaa8e55ef.zip FreeBSD-src-8da8ab73f43e5508fec262ba4a1d38aeaa8e55ef.tar.gz |
Just rename two generic-queue init routines from 'init_*' to '*_gi'
("gi" short for 'generic init'...).
MFC after: 10 days
Diffstat (limited to 'usr.sbin/lpr/lpc/cmdtab.c')
-rw-r--r-- | usr.sbin/lpr/lpc/cmdtab.c | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/usr.sbin/lpr/lpc/cmdtab.c b/usr.sbin/lpr/lpc/cmdtab.c index 7664dd53..73dad39d 100644 --- a/usr.sbin/lpr/lpc/cmdtab.c +++ b/usr.sbin/lpr/lpc/cmdtab.c @@ -70,7 +70,7 @@ char uphelp[] = "enable everything and restart spooling daemon"; struct cmd cmdtab[] = { { "abort", aborthelp, PR, 0, abort_q }, - { "clean", cleanhelp, PR, init_clean, clean_q }, + { "clean", cleanhelp, PR, clean_gi, clean_q }, { "enable", enablehelp, PR, 0, enable_q }, { "exit", quithelp, 0, quit, 0 }, { "disable", disablehelp, PR, 0, disable_q }, @@ -82,7 +82,7 @@ struct cmd cmdtab[] = { { "status", statushelp, 0, 0, status }, { "setstatus", setstatushelp, PR|M, setstatus_gi, setstatus_q }, { "stop", stophelp, PR, 0, stop_q }, - { "tclean", tcleanhelp, 0, init_tclean, clean_q }, + { "tclean", tcleanhelp, 0, tclean_gi, clean_q }, { "topq", topqhelp, PR, topq, 0 }, { "up", uphelp, PR, 0, up_q }, { "?", helphelp, 0, help, 0 }, |