From: Trent Lloyd Date: Tue, 30 Jan 2007 06:38:07 +0000 (+0000) Subject: * Fix typo of failure, thanks to Michael Burns (Closes #98) X-Git-Url: http://git.meshlink.io/?a=commitdiff_plain;ds=sidebyside;h=9ef42bdbb826e380e381dff7cbf4a47a687c9407;p=catta * Fix typo of failure, thanks to Michael Burns (Closes #98) git-svn-id: file:///home/lennart/svn/public/avahi/trunk@1377 941a03a8-eaeb-0310-b9a0-b1bbd8fe43fe --- diff --git a/examples/client-browse-services.c b/examples/client-browse-services.c index 37550ef..de6a970 100644 --- a/examples/client-browse-services.c +++ b/examples/client-browse-services.c @@ -146,7 +146,7 @@ static void client_callback(AvahiClient *c, AvahiClientState state, AVAHI_GCC_UN /* Called whenever the client or server state changes */ if (state == AVAHI_CLIENT_FAILURE) { - fprintf(stderr, "Server connection failre: %s\n", avahi_strerror(avahi_client_errno(c))); + fprintf(stderr, "Server connection failure: %s\n", avahi_strerror(avahi_client_errno(c))); avahi_simple_poll_quit(simple_poll); } }