]> git.ipfire.org Git - thirdparty/freeswitch.git/commitdiff
doh
authorAnthony Minessale <anthm@freeswitch.org>
Thu, 8 Sep 2011 21:55:40 +0000 (16:55 -0500)
committerAnthony Minessale <anthm@freeswitch.org>
Thu, 8 Sep 2011 21:55:40 +0000 (16:55 -0500)
src/switch_utils.c

index 3b9ad79c2faae10ac1026692041ba25fe5bb5b4d..ea6a0a2dfaf84448a5d2af48cc9cfb3df40bb79a 100644 (file)
@@ -466,7 +466,7 @@ SWITCH_DECLARE(switch_status_t) switch_b64_encode(unsigned char *in, switch_size
                b = (b << 8) + in[x];
                l += 8;
 
-               if ((X % 1024) == 0) {
+               if ((x % 1024) == 0) {
                        switch_cond_next(); /* give other processes/threads a chance */
                }
                while (l >= 6) {