aboutsummaryrefslogtreecommitdiff
path: root/src/output/httpd_output_plugin.c
diff options
context:
space:
mode:
authorJeffrey Middleton <jefromi@gmail.com>2009-03-17 06:52:23 +0100
committerMax Kellermann <max@duempel.org>2009-03-17 06:52:23 +0100
commit91f33709135bca4c050b0df1963c8d8bd98b3154 (patch)
tree1580fd68e783b4f34aec28c516e9aaa2d5011850 /src/output/httpd_output_plugin.c
parent3980245d1dc0419ee5ec49944d515d4ca9470c72 (diff)
httpd: fixed encoder plugin check
Check if encoder_plugin!=NULL, not encoder_plugin_get (which is a function).
Diffstat (limited to 'src/output/httpd_output_plugin.c')
-rw-r--r--src/output/httpd_output_plugin.c2
1 files changed, 1 insertions, 1 deletions
diff --git a/src/output/httpd_output_plugin.c b/src/output/httpd_output_plugin.c
index 61591af2..96491c43 100644
--- a/src/output/httpd_output_plugin.c
+++ b/src/output/httpd_output_plugin.c
@@ -61,7 +61,7 @@ httpd_output_init(G_GNUC_UNUSED const struct audio_format *audio_format,
encoder_name = config_get_block_string(param, "encoder", "vorbis");
encoder_plugin = encoder_plugin_get(encoder_name);
- if (encoder_plugin_get == NULL) {
+ if (encoder_plugin == NULL) {
g_set_error(error, httpd_output_quark(), 0,
"No such encoder: %s", encoder_name);
return NULL;