[Pvfs2-cvs] commit by slang in pvfs2/src/proto:
PINT-reqproto-encode.c
CVS commit program
cvs at parl.clemson.edu
Tue May 8 11:31:37 EDT 2007
Update of /projects/cvsroot/pvfs2/src/proto
In directory parlweb1:/tmp/cvs-serv18157/src/proto
Modified Files:
PINT-reqproto-encode.c
Log Message:
[kyle]: fix weird linewrapping for protocol mismatch error.
Index: PINT-reqproto-encode.c
===================================================================
RCS file: /projects/cvsroot/pvfs2/src/proto/PINT-reqproto-encode.c,v
diff -p -u -r1.30 -r1.31
--- PINT-reqproto-encode.c 17 Sep 2006 21:31:28 -0000 1.30
+++ PINT-reqproto-encode.c 8 May 2007 15:31:36 -0000 1.31
@@ -200,8 +200,8 @@ int PINT_decode(void* input_buffer,
gossip_err(" Protocol version mismatch: received major version %d when "
"expecting %d.\n", (int)proto_major_recved,
PVFS2_PROTO_MAJOR);
- gossip_err(" Please verify your PVFS2 installation and make sure "
- "that the version is\n consistent.\n");
+ gossip_err(" Please verify your PVFS2 installation\n");
+ gossip_err(" and make sure that the version is consistent.\n");
return(-PVFS_EPROTONOSUPPORT);
}
@@ -213,8 +213,8 @@ int PINT_decode(void* input_buffer,
"expecting %d or lower.\n", (int)proto_minor_recved,
PVFS2_PROTO_MINOR);
gossip_err(" Client is too new for server.\n");
- gossip_err(" Please verify your PVFS2 installation and make sure "
- "that the version is\n consistent.\n");
+ gossip_err(" Please verify your PVFS2 installation\n");
+ gossip_err(" and make sure that the version is consistent.\n");
return(-PVFS_EPROTONOSUPPORT);
}
@@ -226,8 +226,8 @@ int PINT_decode(void* input_buffer,
"expecting %d or higher.\n", (int)proto_minor_recved,
PVFS2_PROTO_MINOR);
gossip_err(" Server is too old for client.\n");
- gossip_err(" Please verify your PVFS2 installation and make sure "
- "that the version is\n consistent.\n");
+ gossip_err(" Please verify your PVFS2 installation\n");
+ gossip_err(" and make sure that the version is consistent.\n");
return(-PVFS_EPROTONOSUPPORT);
}
More information about the Pvfs2-cvs
mailing list