Searched refs:shellpath (Results 1 - 4 of 4) sorted by relevance

/freebsd-11-stable/usr.sbin/pw/tests/
H A Dpw-modified.conf33 shellpath = "/bin"
H A Dpw.conf33 shellpath = "/bin"
/freebsd-11-stable/crypto/heimdal/appl/ftp/ftp/
H A Dcmds.c1240 char shellnam[40], *shellpath, *namep; local
1250 shellpath = getenv("SHELL");
1251 if (shellpath == NULL)
1252 shellpath = _PATH_BSHELL;
1253 namep = strrchr(shellpath, '/');
1255 namep = shellpath;
1261 printf ("%s\n", shellpath);
1265 execl(shellpath,shellnam,"-c",altarg,(char *)0);
1268 execl(shellpath,shellnam,(char *)0);
1270 warn("%s", shellpath);
[all...]
/freebsd-11-stable/usr.sbin/pw/
H A Dpw_user.c458 static char shellpath[256]; local
461 snprintf(shellpath, sizeof(shellpath), "%s/%s", p, sh);
462 if (access(shellpath, X_OK) == 0)
463 return shellpath;
466 snprintf(shellpath, sizeof(shellpath), "%s/%s", p, shells[i]);
467 if (access(shellpath, X_OK) == 0)
468 return shellpath;

Completed in 67 milliseconds