From 359e9b6c2b0cc4817b55338f0b89638945d98c50 Mon Sep 17 00:00:00 2001 From: Matthias Schiffer Date: Sat, 24 Mar 2012 22:32:24 +0100 Subject: Rename methods to protocols; fix some command line parse bugs; implement most of the config file parser --- src/printf.c | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) (limited to 'src/printf.c') diff --git a/src/printf.c b/src/printf.c index 72bc941..bef598c 100644 --- a/src/printf.c +++ b/src/printf.c @@ -183,7 +183,7 @@ void fastd_printf(const fastd_context *ctx, const char *format, ...) { p = va_arg(ap, void*); if (p) { - char* str = ctx->conf->method->peer_str(ctx, (fastd_peer*)p); + char* str = ctx->conf->protocol->peer_str(ctx, (fastd_peer*)p); fprintf(stderr, "%s", str); free(str); } -- cgit v1.2.3