From a05b68ea4c277a22dd4ae0e19010090190259152 Mon Sep 17 00:00:00 2001 From: Rob Thomas Date: Sun, 5 May 2013 14:58:25 +1000 Subject: [PATCH] Uniquely idenfity each pushpool instance --- msg.c | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/msg.c b/msg.c index 2ea0232..8793d02 100644 --- a/msg.c +++ b/msg.c @@ -67,7 +67,7 @@ char *pwdb_lookup(const char *user) if (srv.mc) { snprintf(cred_key, sizeof(cred_key), - "/pushpoold/cred_cache/%s", user); + "/pushpoold/cred_cache/%s%s", srv.rpc_url,user); pass = memcached_get(srv.mc, cred_key, strlen(cred_key), &out_len, &out_flags, &rc);