diff options
-rw-r--r-- | source3/client/client.c | 6 |
1 files changed, 3 insertions, 3 deletions
diff --git a/source3/client/client.c b/source3/client/client.c index 7470a7ba5f..a080444998 100644 --- a/source3/client/client.c +++ b/source3/client/client.c @@ -582,17 +582,17 @@ static int cmd_dir(void) if(mask[strlen(mask)-1]!='\\') pstrcat(mask,"\\"); } else { - *mask = '\0'; + pstrcpy(mask, "\\"); } if (next_token_nr(NULL,buf,NULL,sizeof(buf))) { dos_format(p); if (*p == '\\') - pstrcpy(mask,p); + pstrcpy(mask,p + 1); else pstrcat(mask,p); } else { - pstrcat(mask,"\\*"); + pstrcat(mask,"*"); } do_list(mask, attribute, display_finfo, recurse, True); |