Skip to content
Snippets Groups Projects
Commit 3a2ee4a9 authored by Steven Murray's avatar Steven Murray
Browse files

CASTOR-5083 Remove hardcoded "castorns" from send2nsd.c

Fixed.
parent a440b44f
No related branches found
No related tags found
No related merge requests found
......@@ -202,6 +202,7 @@ const char *sys_nserrlist[ENSMAXERR-ENSBASEOFF+2] =
"File class does not allow a copy on tape",
"Too many copies on tape",
"Cannot overwrite valid segment when replacing",
"CNS HOST not set",
"BAD ERROR NUMBER"
};
......
......@@ -216,7 +216,8 @@
#define ENSCLASSNOSEGS ENSBASEOFF+5 /* File class does not allow a copy on tape */
#define ENSTOOMANYSEGS ENSBASEOFF+6 /* Too many copies on tape */
#define ENSOVERWHENREP ENSBASEOFF+7 /* Cannot overwrite valid segment when replacing */
#define ENSMAXERR ENSBASEOFF+7
#define ENHOSTNOTSET ENSBASEOFF+8 /* CNS HOST not set */
#define ENSMAXERR ENSBASEOFF+8
/*
*------------------------------------------------------------------------
......
......@@ -502,6 +502,10 @@ The following error values are returned only by the name server package:
.TP
.B ENSTOOMANYSEGS
(1406) Too many copies on tape
.B ENSOVERWHENREP
(1407) Cannot overwrite valid segment when replacing
.B ENHOSTNOTSET
(1408) CNS HOST not set
.SH RFIO ERRORS
The following error values are returned only by the remote file I/O package:
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment