diff options
author | Luke Leighton <lkcl@samba.org> | 1999-02-03 16:30:54 +0000 |
---|---|---|
committer | Luke Leighton <lkcl@samba.org> | 1999-02-03 16:30:54 +0000 |
commit | 91403ea47dc6a23bd17c45ed0e5d6b61b3f8b531 (patch) | |
tree | a950d7dbffa9a95d8eb4e77eafe3ff39b449f133 | |
parent | f61fc8923d4eceab8c82ff9c49745f9c6bed44e7 (diff) | |
download | samba-91403ea47dc6a23bd17c45ed0e5d6b61b3f8b531.tar.gz samba-91403ea47dc6a23bd17c45ed0e5d6b61b3f8b531.tar.bz2 samba-91403ea47dc6a23bd17c45ed0e5d6b61b3f8b531.zip |
%s not $s
(This used to be commit 62118e15fed8c9a7e13705842d0ae59669a2dd8f)
-rw-r--r-- | source3/client/clitar.c | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/source3/client/clitar.c b/source3/client/clitar.c index dcc176b9d1..fd43d37abb 100644 --- a/source3/client/clitar.c +++ b/source3/client/clitar.c @@ -1476,7 +1476,7 @@ int process_tar(void) } else { pstring mask; safe_strcpy(mask,cur_dir, sizeof(pstring)); - DEBUG(5, ("process_tar, do_list with mask: $s\n", mask)); + DEBUG(5, ("process_tar, do_list with mask: %s\n", mask)); safe_strcat(mask,"\\*", sizeof(pstring)); do_list(mask,attribute,do_tar,False, True); } |