Home | History | Annotate | Download | only in bootpd

Lines Matching defs:bootfile

607 	char *homedir, *bootfile;
778 * Fill in the client's proper bootfile.
787 * Homedir Bootfile Client's file
796 * Yes Yes Null Send home/boot or bootfile
827 * Determine client's requested homedir and bootfile.
830 bootfile = NULL;
845 bootfile = strrchr(homedir, '/');
846 if (bootfile) {
847 if (homedir == bootfile)
849 *bootfile++ = '\0';
852 bootfile = homedir;
858 (bootfile) ? bootfile : "");
867 if (hp->flags.bootfile)
868 bootfile = hp->bootfile->string;
871 * Construct bootfile path.
879 if (bootfile) {
880 if (bootfile[0] != '/') {
884 strlcat(lrealpath, bootfile, sizeof(lrealpath));
886 bootfile = NULL;
912 * access the default file, so just zero-out the bootfile
931 report(LOG_INFO, "bootfile=\"%s\"", clntpath);