From 6c39b10f1d3927c4e6dc31523b79b6611f6f8bc6 Mon Sep 17 00:00:00 2001 From: Matthias Dieter Wallnöfer Date: Sun, 21 Mar 2010 16:02:36 +0100 Subject: s4:regshell - here we don't need a newline - "ctime" itself provides one --- source4/lib/registry/tools/regshell.c | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) (limited to 'source4/lib/registry') diff --git a/source4/lib/registry/tools/regshell.c b/source4/lib/registry/tools/regshell.c index 1ead1a67f4..558e26dcdf 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); -- cgit