aboutsummaryrefslogtreecommitdiff
path: root/www/varnish2/files/patch-svn-r1754
diff options
context:
space:
mode:
Diffstat (limited to 'www/varnish2/files/patch-svn-r1754')
-rw-r--r--www/varnish2/files/patch-svn-r175435
1 files changed, 0 insertions, 35 deletions
diff --git a/www/varnish2/files/patch-svn-r1754 b/www/varnish2/files/patch-svn-r1754
deleted file mode 100644
index b2cdf2015edb..000000000000
--- a/www/varnish2/files/patch-svn-r1754
+++ /dev/null
@@ -1,35 +0,0 @@
-Index: bin/varnishreplay/varnishreplay.c
-===================================================================
---- bin/varnishreplay/varnishreplay.c (revision 1753)
-+++ bin/varnishreplay/varnishreplay.c (revision 1754)
-@@ -145,7 +145,7 @@
- if (lvl > debug)
- return;
- pthread_mutex_lock(&log_mutex);
-- fprintf(stderr, "%08x ", (unsigned int)pthread_self());
-+ fprintf(stderr, "%p ", (void *)pthread_self());
- va_start(ap, fmt);
- vfprintf(stderr, fmt, ap);
- va_end(ap);
-@@ -183,8 +183,8 @@
- mailbox_destroy(&threads[fd]->mbox);
- freez(threads[fd]);
- }
-- thread_log(1, "thread %08x started\n",
-- (unsigned int)threads[fd]->thread_id);
-+ thread_log(1, "thread %p started\n",
-+ (void *)threads[fd]->thread_id);
- }
- return (threads[fd]);
- }
-@@ -204,8 +204,8 @@
- return;
- mailbox_close(&threads[fd]->mbox);
- pthread_join(threads[fd]->thread_id, NULL);
-- thread_log(1, "thread %08x stopped\n",
-- (unsigned int)threads[fd]->thread_id);
-+ thread_log(1, "thread %p stopped\n",
-+ (void *)threads[fd]->thread_id);
- mailbox_destroy(&threads[fd]->mbox);
- freez(threads[fd]);
- }