You are viewing a plain text version of this content. The canonical link for it is here.
Posted to dev@subversion.apache.org by Raymond McCrae <ra...@ntlworld.com> on 2002/09/09 22:46:43 UTC

[PATCH] Issue #892 Incorrect Time Stamp for Command Line Client list operation

Fix issue #892:

* ls-cmd.c (print_dirents): Format string for converting a date 
structure to
   string has been updated. The %m has been replaced with a %M .

Index: subversion/clients/cmdline/ls-cmd.c
===================================================================
--- subversion/clients/cmdline/ls-cmd.c
+++ subversion/clients/cmdline/ls-cmd.c Mon Sep  9 23:30:04 2002
@@ -84,7 +84,7 @@
              apr_time_exp_lt (&exp_time, dirent->time);

              apr_err = apr_strftime (timestr, &size, sizeof (timestr),
-                                    "%b %d %H:%m", &exp_time);
+                                    "%b %d %H:%M", &exp_time);

              /* if that failed, just zero out the string and print 
nothing */
              if (apr_err)


---------------------------------------------------------------------
To unsubscribe, e-mail: dev-unsubscribe@subversion.tigris.org
For additional commands, e-mail: dev-help@subversion.tigris.org

Re: [PATCH] Issue #892 Incorrect Time Stamp for Command Line Client list operation

Posted by Garrett Rooney <ro...@electricjellyfish.net>.
On Monday, September 9, 2002, at 06:46 PM, Raymond McCrae wrote:

> Fix issue #892:
>
> * ls-cmd.c (print_dirents): Format string for converting a date 
> structure to
>   string has been updated. The %m has been replaced with a %M .

how embarassing.  i wrote that code...

committed in rev 3147.

thanks.

-garrett

-- 
garrett rooney                    Remember, any design flaw you're
rooneg@electricjellyfish.net      sufficiently snide about becomes
http://electricjellyfish.net/     a feature.       -- Dan Sugalski


---------------------------------------------------------------------
To unsubscribe, e-mail: dev-unsubscribe@subversion.tigris.org
For additional commands, e-mail: dev-help@subversion.tigris.org