2007-12-22 Chris Johns <chrisj@rtems.org>

* nfsclient/src/nfs.c, nfsclient/src/rpcio.c: Adjust the length of
	the hello message. Just one line but still a little too long.
This commit is contained in:
Chris Johns
2007-12-22 08:29:36 +00:00
parent e85eb70bc7
commit 107f4d3446
3 changed files with 20 additions and 10 deletions

View File

@@ -1,3 +1,8 @@
2007-12-22 Chris Johns <chrisj@rtems.org>
* nfsclient/src/nfs.c, nfsclient/src/rpcio.c: Adjust the length of
the hello message. Just one line but still a little too long.
2007-12-14 Chris Johns <chrisj@rtems.org>
* wrapup/Makefile.am: Add libflash.a to the libbsp library.

View File

@@ -963,13 +963,19 @@ NfsNode rval = nfsNodeCreate(node->nfs, 0);
*/
void
nfsInit(int smallPoolDepth, int bigPoolDepth)
{
{
static int initialised = 0;
entry dummy;
fprintf(stderr,"This is RTEMS-NFS Release $Name$\n");
fprintf(stderr,"($Id$)\n\n");
fprintf(stderr,"Till Straumann, Stanford/SLAC/SSRL 2002\n");
fprintf(stderr,"See LICENSE file for licensing info\n");
if (initialised)
return;
initialised = 1;
fprintf(stderr,
"RTEMS-NFS $Release$, " \
"Till Straumann, Stanford/SLAC/SSRL 2002, " \
"See LICENSE file for licensing info.\n");
/* Get a major number */

View File

@@ -920,12 +920,11 @@ rpcUdpInit(void)
int noblock = 1;
struct sockwakeup wkup;
fprintf(stderr,"This is RTEMS-RPCIOD Release $Name$\n");
fprintf(stderr,"($Id$)\n\n");
fprintf(stderr,"Till Straumann, Stanford/SLAC/SSRL 2002\n");
fprintf(stderr,"See LICENSE file for licensing info\n");
if (ourSock < 0) {
fprintf(stderr,"RTEMS-RPCIOD $Release$, " \
"Till Straumann, Stanford/SLAC/SSRL 2002, " \
"See LICENSE file for licensing info.\n");
ourSock=socket(AF_INET, SOCK_DGRAM, IPPROTO_UDP);
if (ourSock>=0) {
bindresvport(ourSock,(struct sockaddr_in*)0);