- // Strip off @domain
- if ((x = strchr(data->username, '@')))
- {
- p->_log(3, 0, 0, 0, "Stripping off trailing domain name \"%s\"\n", x);
- *x = 0;
- }
+ // Strip off @domain
+ if ((p = strchr(data->username, '@')))
+ {
+ f->log(3, 0, 0, "Stripping off trailing domain name \"%s\"\n", p);
+ *p = 0;
+ }