diff options
author | Howard Chu <hyc@highlandsun.com> | 2010-05-15 22:02:44 +0200 |
---|---|---|
committer | Daniel Stenberg <daniel@haxx.se> | 2010-05-15 22:02:44 +0200 |
commit | 510836f80b8b3ad32cb1d6b8fbdf70d1fd3b772c (patch) | |
tree | dc25cbaf1e6819fd307ff8fd3b054e15a2d80897 /lib/curl_rtmp.h | |
parent | e4af5d6efcf9c8ddae087009df1782d890a0e13b (diff) | |
download | curl-510836f80b8b3ad32cb1d6b8fbdf70d1fd3b772c.tar.gz |
RTMP: fix wrong #ifdef
Diffstat (limited to 'lib/curl_rtmp.h')
-rw-r--r-- | lib/curl_rtmp.h | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/lib/curl_rtmp.h b/lib/curl_rtmp.h index 35776aaa6..06555ffce 100644 --- a/lib/curl_rtmp.h +++ b/lib/curl_rtmp.h @@ -22,7 +22,7 @@ * KIND, either express or implied. * ***************************************************************************/ -#ifndef CURL_DISABLE_RTMP +#ifdef USE_LIBRTMP extern const struct Curl_handler Curl_handler_rtmp; extern const struct Curl_handler Curl_handler_rtmpt; extern const struct Curl_handler Curl_handler_rtmpe; |