add a patch to fix an ifdef check, WITH_THROTTLING -> THROTTLING, fixes upload throttling. From: MERIGHI Marcus <McMer at Tor dot AT>
13 lines
483 B
Plaintext
13 lines
483 B
Plaintext
$OpenBSD: patch-src_log_extauth_c,v 1.1 2004/09/15 19:22:40 brad Exp $
|
|
--- src/log_extauth.c.orig Wed Sep 15 15:06:29 2004
|
|
+++ src/log_extauth.c Wed Sep 15 15:06:46 2004
|
|
@@ -63,7 +63,7 @@ static void callback_reply_slow_tilde_ex
|
|
|
|
static void callback_reply_throttling_bandwidth_ul(const char *str, AuthResult * const result)
|
|
{
|
|
-#ifdef WITH_THROTTLING
|
|
+#ifdef THROTTLING
|
|
result->throttling_bandwidth_ul = strtoul(str, NULL, 10);
|
|
result->throttling_ul_changed = 1;
|
|
#else
|