The branch, master has been updated
       via  6c39b10... s4:regshell - here we don't need a newline - "ctime" 
itself provides one
      from  d4425ec... s4:regshell - don't return an error code if we get a 
security descriptors error

http://gitweb.samba.org/?p=samba.git;a=shortlog;h=master


- Log -----------------------------------------------------------------
commit 6c39b10f1d3927c4e6dc31523b79b6611f6f8bc6
Author: Matthias Dieter Wallnöfer <mwallnoe...@yahoo.de>
Date:   Sun Mar 21 16:02:36 2010 +0100

    s4:regshell - here we don't need a newline - "ctime" itself provides one

-----------------------------------------------------------------------

Summary of changes:
 source4/lib/registry/tools/regshell.c |    2 +-
 1 files changed, 1 insertions(+), 1 deletions(-)


Changeset truncated at 500 lines:

diff --git a/source4/lib/registry/tools/regshell.c 
b/source4/lib/registry/tools/regshell.c
index 1ead1a6..558e26d 100644
--- a/source4/lib/registry/tools/regshell.c
+++ b/source4/lib/registry/tools/regshell.c
@@ -125,7 +125,7 @@ static WERROR cmd_info(struct regshell_context *ctx, int 
argc, char **argv)
        if (classname != NULL)
                printf("Key Class: %s\n", classname);
        last_mod = nt_time_to_unix(last_change);
-       printf("Time Last Modified: %s\n", ctime(&last_mod));
+       printf("Time Last Modified: %s", ctime(&last_mod));
        printf("Number of subkeys: %d\n", num_subkeys);
        printf("Number of values: %d\n", num_values);
 


-- 
Samba Shared Repository

Reply via email to