[EMAIL PROTECTED] 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
_______________________________________________
Pvfs2-developers mailing list
Pvfs2-developers@beowulf-underground.org
http://www.beowulf-underground.org/mailman/listinfo/pvfs2-developers

Reply via email to