Lines Matching defs:targ
103 char *targ;
183 if ((targ = colon(argv[argc - 1])) != NULL)/* Dest is remote host. */
184 toremote(targ, argc, argv);
195 toremote(char *targ, int argc, char *argv[])
201 *targ++ = 0;
202 if (*targ == 0)
203 targ = dot;
228 strlen(thost) + strlen(targ) + CMDNEEDS + 20;
245 thost, targ);
252 thost, targ);
258 len = strlen(targ) + CMDNEEDS + 20;
261 (void)snprintf(bp, len, "%s -t %s", cmd, targ);
500 char ch, *cp, *np, *targ, *vect[1], buf[BUFSIZ];
518 targ = *argv;
520 verifydir(targ);
522 if (stat(targ, &stb) == 0 && S_ISDIR(stb.st_mode))
605 need = strlen(targ) + strlen(cp) + 2;
617 (void)snprintf(namebuf, cursize, "%s%s%s", targ,
618 *targ ? "/" : "", cp);
621 np = targ;