From: Richard Sharpe Date: Sat, 19 Dec 1998 01:43:24 +0000 (+0000) Subject: Added some debugging to clitar ... X-Git-Tag: samba-4.0.0alpha6~801^2~20977 X-Git-Url: http://git.samba.org/samba.git/?a=commitdiff_plain;h=a7e4be0e782dc4dd9b3d5e3e3af9e49ef93ed08a;p=sfrench%2Fsamba-autobuild%2F.git Added some debugging to clitar ... (This used to be commit b75af70990c3a9eaed9e3537b79e8e66a0ae8286) --- diff --git a/source3/client/clitar.c b/source3/client/clitar.c index 6e9f8bcd03c..f3379a3119d 100644 --- a/source3/client/clitar.c +++ b/source3/client/clitar.c @@ -848,6 +848,7 @@ static void do_tar(file_info *finfo) ntarf++; /* Make sure we have a file on there */ safe_strcpy(mtar_mask,cur_dir, sizeof(pstring)); safe_strcat(mtar_mask,"*", sizeof(pstring)); + DEBUG(5, ("Doing list with mtar_mask: %s\n, mtar_mask)); do_list(mtar_mask, attribute, do_tar, False, True); safe_strcpy(cur_dir,saved_curdir, sizeof(pstring)); } @@ -1461,17 +1462,20 @@ int process_tar(void) safe_strcpy(cur_dir, tarmac, sizeof(pstring)); *(strrchr(cur_dir, '\\')+1)='\0'; + DEBUG(5, "process_tar, do_list with tarmac: %s\n", tarmac); do_list(tarmac,attribute,do_tar, False, True); safe_strcpy(cur_dir,saved_dir, sizeof(pstring)); } else { safe_strcpy(tarmac, cur_dir, sizeof(pstring)); safe_strcat(tarmac, cliplist[i], sizeof(pstring)); + DEBUG(5, "process_tar, do_list with tarmac: %s\n", tarmac); do_list(tarmac,attribute,do_tar, False, True); } } } else { pstring mask; safe_strcpy(mask,cur_dir, sizeof(pstring)); + DEBUG(5, process_tar, do_list with mask: $s\n", mask); safe_strcat(mask,"\\*", sizeof(pstring)); do_list(mask,attribute,do_tar,False, True); }