Home | History | Annotate | Download | only in dropbear

Lines Matching refs:targ

304 	char *targ, *endp;
426 if ((targ = colon(argv[argc - 1]))) /* Dest is remote host. */
427 toremote(targ, argc, argv);
454 toremote(char *targ, int argc, char **argv)
463 *targ++ = 0;
464 if (*targ == 0)
465 targ = ".";
518 thost, targ);
523 len = strlen(targ) + CMDNEEDS + 20;
525 (void) snprintf(bp, len, "%s -t %s", cmd, targ);
835 char ch, *cp, *np, *targ, *why, *vect[1], buf[2048];
850 targ = *argv;
852 verifydir(targ);
855 if (stat(targ, &stb) == 0 && S_ISDIR(stb.st_mode))
943 need = strlen(targ) + strlen(cp) + 250;
950 (void) snprintf(namebuf, need, "%s%s%s", targ,
951 strcmp(targ, "/") ? "/" : "", cp);
954 np = targ;