[Pvfs2-developers] Re: [Pvfs2-cvs] commit by slang in
pvfs2/src/io/bmi:
bmi-method-callback.h bmi-method-support.c bmi-method-support.h
bmi.c op-list.c op-list.h reference-list.c reference-list.h
Pete Wyckoff
pw at osc.edu
Wed Nov 7 08:17:52 EST 2007
cvs at parl.clemson.edu wrote on Tue, 06 Nov 2007 18:08 -0500:
> diff -p -u -r1.88 -r1.89
> --- bmi.c 20 Oct 2007 15:40:13 -0000 1.88
> +++ bmi.c 6 Nov 2007 23:08:33 -0000 1.89
> @@ -214,7 +214,7 @@ int BMI_initialize(const char *method_li
> if(!strncmp(listen_addrs[j], proto, strlen(proto)))
> {
> /* found the right addr */
> - this_addr = listen_addrs[j];
> + this_addr = strstr(listen_addrs[j], "://") + 3;
> break;
> }
Instead of passing down tcp://foo:343/bar, you now pass
foo:343/bar. Looks like you fixed up the TCP method to
expect that, maybe, but not the others. Is this a bug?
Maybe it's fixed by your big patch, and just an artifact
of the separation.
-- Pete
More information about the Pvfs2-developers
mailing list