diff options
author | Jeremy Allison <jra@samba.org> | 1998-11-02 18:12:28 +0000 |
---|---|---|
committer | Jeremy Allison <jra@samba.org> | 1998-11-02 18:12:28 +0000 |
commit | c082539152eefb90a752277b3917403f613c3a3a (patch) | |
tree | ab200870bd36119da8f77581ea0cc32ac3d7cd9e | |
parent | 502e2ec3cf3dc1e0d64771f52b7bc7ff54050526 (diff) | |
download | samba-c082539152eefb90a752277b3917403f613c3a3a.tar.gz samba-c082539152eefb90a752277b3917403f613c3a3a.tar.bz2 samba-c082539152eefb90a752277b3917403f613c3a3a.zip |
client/client.c: Patch to tidy up file size output.
nmbd/nmbd.c: Someone (a "yank" no doubt :-) Changed instances of "initialise" to
"initialize". Someone get that man an *English* dictionary.... :-) :-).
Jeremy.
(This used to be commit 6279be7f96802bb132e5e18dd8c6912652296e70)
-rw-r--r-- | source3/client/client.c | 2 | ||||
-rw-r--r-- | source3/nmbd/nmbd.c | 5 |
2 files changed, 2 insertions, 5 deletions
diff --git a/source3/client/client.c b/source3/client/client.c index 2d6b8cf59d..eceadbe09c 100644 --- a/source3/client/client.c +++ b/source3/client/client.c @@ -467,7 +467,7 @@ static void display_finfo(file_info *finfo) { if (do_this_one(finfo)) { time_t t = finfo->mtime; /* the time is assumed to be passed as GMT */ - DEBUG(0,(" %-30s%7.7s%.0f %s", + DEBUG(0,(" %-30s%7.7s%8.0f %s", CNV_LANG(finfo->name), attrib_string(finfo->mode), (double)finfo->size, diff --git a/source3/nmbd/nmbd.c b/source3/nmbd/nmbd.c index 92c43f410e..d7ce42dae2 100644 --- a/source3/nmbd/nmbd.c +++ b/source3/nmbd/nmbd.c @@ -567,10 +567,7 @@ static void usage(char *pname) charset_initialise(); - if(!initialise_group_db()) - exit(1); - - if(!initialise_password_db()) + if(!initialize_password_db()) exit(1); #ifdef LMHOSTSFILE |