svn commit: r198119 - user/des/svnsup/src/distill

Dag-Erling Smorgrav des at FreeBSD.org
Thu Oct 15 10:42:30 UTC 2009


Author: des
Date: Thu Oct 15 10:42:30 2009
New Revision: 198119
URL: http://svn.freebsd.org/changeset/base/198119

Log:
  Nothing to see except in debug mode (for now)

Modified:
  user/des/svnsup/src/distill/log.c
  user/des/svnsup/src/distill/txdelta.c

Modified: user/des/svnsup/src/distill/log.c
==============================================================================
--- user/des/svnsup/src/distill/log.c	Thu Oct 15 10:31:24 2009	(r198118)
+++ user/des/svnsup/src/distill/log.c	Thu Oct 15 10:42:30 2009	(r198119)
@@ -52,6 +52,10 @@ log_entry_receiver(void *baton,
 	(void)pool;
 	(void)baton;
 	SVNSUP_DEBUG("%s(r%lu)\n", __func__, (long)log_entry->revision);
+
+	if (!debug)
+		return (SVN_NO_ERROR);
+
 	fprintf(stderr, "revision properties:\n");
 #if 0
 	for (hash_index = apr_hash_first(pool, log_entry->revprops);

Modified: user/des/svnsup/src/distill/txdelta.c
==============================================================================
--- user/des/svnsup/src/distill/txdelta.c	Thu Oct 15 10:31:24 2009	(r198118)
+++ user/des/svnsup/src/distill/txdelta.c	Thu Oct 15 10:42:30 2009	(r198119)
@@ -44,6 +44,9 @@ txdelta_window_handler(svn_txdelta_windo
 	(void)baton;
 	SVNSUP_DEBUG("%s()\n", __func__);
 
+	if (!debug)
+		return (SVN_NO_ERROR);
+
 	if (window == NULL) {
 		fprintf(stderr, "end of delta\n");
 		return (SVN_NO_ERROR);


More information about the svn-src-user mailing list