diff options
Diffstat (limited to 'source3/client')
-rw-r--r-- | source3/client/client.c | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/source3/client/client.c b/source3/client/client.c index 87ec3a9969..0d60103f26 100644 --- a/source3/client/client.c +++ b/source3/client/client.c @@ -2292,12 +2292,12 @@ static int cmd_print(void) rname = talloc_asprintf(ctx, "%s-%d", p+1, - (int)sys_getpid()); + (int)getpid()); } if (strequal(lname,"-")) { rname = talloc_asprintf(ctx, "stdin-%d", - (int)sys_getpid()); + (int)getpid()); } if (!rname) { return 1; |