Package: subversion Version: 1.7.14-1+b1 Severity: wishlist Tags: patch Hi,
when updating a repository, svn tells me to which revision it has been updated, but not from which revision. I have attached an untested draft patch that is expected to do exact this. Please consider applying it to the Debian package or forwarding it upstream. Thank you! - Fabian -- System Information: Debian Release: jessie/sid APT prefers testing APT policy: (990, 'testing'), (900, 'unstable'), (800, 'experimental'), (500, 'stable') Architecture: amd64 (x86_64) Foreign Architectures: i386 Kernel: Linux 3.12-1-amd64 (SMP w/4 CPU cores) Locale: LANG=de_DE.utf8, LC_CTYPE=de_DE.utf8 (charmap=UTF-8) Shell: /bin/sh linked to /bin/dash Versions of packages subversion depends on: ii libapr1 1.5.0-1 ii libc6 2.17-97 ii libsasl2-2 2.1.25.dfsg1-17 ii libsvn1 1.7.14-1+b1 subversion recommends no packages. Versions of packages subversion suggests: ii db5.1-util 5.1.29-6 ii patch 2.7.1-4 pn subversion-tools <none> -- no debconf information
diff --git a/subversion/svn/notify.c b/home/greffrath/notify.c index 6498fb1..7146b27 100644 --- a/subversion/svn/notify.c +++ b/home/greffrath/notify.c @@ -740,9 +740,9 @@ notify(void *baton, const svn_wc_notify_t *n, apr_pool_t *pool) nb->received_some_change = FALSE; if ((err = svn_cmdline_printf (pool, nb->in_external - ? _("Updated external to revision %ld.\n") - : _("Updated to revision %ld.\n"), - n->revision))) + ? _("Updated external to revision %ld (from %ld).\n") + : _("Updated to revision %ld (from %ld).\n"), + n->revision, n->old_revision))) goto print_error; } else