Searched refs:tohere (Results 1 – 4 of 4) sorted by relevance
/titanic_41/usr/src/cmd/rexd/ |
H A D | where_main.c | 96 register char *tohere; local 98 tohere = Argv[0]; 100 strlen(user)+strlen(host)+3 > (LastArgv - tohere)) 102 *tohere++ = '-'; /* So ps prints (rpc.rexd) */ 103 sprintf(tohere, "%s@%s", user, host); 104 while (*tohere++) /* Skip to end of printf output */ 106 while (tohere < LastArgv) /* Avoid confusing ps */ 107 *tohere++ = ' ';
|
H A D | under.c | 67 register char *tohere; local 69 tohere = Argv[0]; 71 (int)(strlen(user)+strlen(host)+3) > (int)(LastArgv - tohere)) 73 *tohere++ = '-'; /* So ps prints (rpc.rexd) */ 74 sprintf(tohere, "%s@%s", user, host); 75 while (*tohere++) /* Skip to end of printf output */ 77 while (tohere < LastArgv) /* Avoid confusing ps */ 78 *tohere++ = ' ';
|
H A D | on.c | 750 register char *tohere; local 752 tohere = Argv[0]; 754 (int)(strlen(user) + strlen(host)+3) > (int)(LastArgv - tohere)) 756 *tohere++ = '-'; /* So ps prints (rpc.rexd) */ 757 sprintf(tohere, "%s@%s", user, host); 758 while (*tohere++) /* Skip to end of printf output */ 760 while (tohere < LastArgv) /* Avoid confusing ps */ 761 *tohere++ = ' ';
|
H A D | rpc.rexd.c | 1352 register char *tohere; local 1354 tohere = Argv[0]; 1357 (int)(LastArgv - tohere)) 1360 *tohere++ = '-'; /* So ps prints (rpc.rexd) */ 1361 sprintf(tohere, "%s@%s", user, host); 1362 while (*tohere++) /* Skip to end of printf output */ 1364 while (tohere < LastArgv) /* Avoid confusing ps */ 1365 *tohere++ = ' ';
|