Skip to content

Commit

Permalink
Browse files Browse the repository at this point in the history
subscription: fix typo in unsubscribe log (client)
  • Loading branch information
perexg committed Jun 13, 2015
1 parent c475cd0 commit 81f8235
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion src/subscriptions.c
Expand Up @@ -583,7 +583,7 @@ subscription_unsubscribe(th_subscription_t *s, int quiet)
if (s->ths_username)
tvh_strlcatf(buf, sizeof(buf), l, ", username=\"%s\"", s->ths_username);
if (s->ths_client)
tvh_strlcatf(buf, sizeof(buf), l, ", username=\"%s\"", s->ths_client);
tvh_strlcatf(buf, sizeof(buf), l, ", client=\"%s\"", s->ths_client);
tvhlog(quiet ? LOG_TRACE : LOG_INFO, "subscription", "%04X: %s", shortid(s), buf);

if (t) {
Expand Down

0 comments on commit 81f8235

Please sign in to comment.