mirror of
https://github.com/SDL-Hercules-390/hyperion.git
synced 2026-04-19 10:15:56 +02:00
Renumbered and documented messages in dasdisup.c.
git-svn-id: file:///home/jj/hercules.svn/trunk@1084 956126f8-22a0-4046-8f4a-272fa8102e63
This commit is contained in:
40
dasdisup.c
40
dasdisup.c
@@ -241,7 +241,7 @@ BYTE memnama[9]; /* Member name (ASCIIZ) */
|
||||
dirrem = (dirptr[0] << 8) | dirptr[1];
|
||||
if (dirrem < 2 || dirrem > 256)
|
||||
{
|
||||
fprintf (stdout, "Directory block byte count is invalid\n");
|
||||
fprintf (stdout, "HHCDS003E Directory block byte count is invalid\n");
|
||||
return -1;
|
||||
}
|
||||
|
||||
@@ -286,7 +286,7 @@ BYTE memnama[9]; /* Member name (ASCIIZ) */
|
||||
if (secondload[i] == NULL)
|
||||
{
|
||||
fprintf (stdout,
|
||||
"%s %s skipped\n",
|
||||
"HHCDS018I %s %s skipped\n",
|
||||
memnama,
|
||||
((dirent->pds2indc & PDS2INDC_ALIAS) ?
|
||||
"Alias" : "Member"));
|
||||
@@ -299,7 +299,7 @@ BYTE memnama[9]; /* Member name (ASCIIZ) */
|
||||
if (n >= MAX_MEMBERS)
|
||||
{
|
||||
fprintf (stdout,
|
||||
"Error: Number of members exceeds MAX_MEMBERS\n");
|
||||
"HHCDS004E Number of members exceeds MAX_MEMBERS\n");
|
||||
return -1;
|
||||
}
|
||||
|
||||
@@ -308,7 +308,7 @@ BYTE memnama[9]; /* Member name (ASCIIZ) */
|
||||
< 1)
|
||||
{
|
||||
fprintf (stdout,
|
||||
"Error: Member %s TTR count is zero\n", memnama);
|
||||
"HHCDS005E Member %s TTR count is zero\n", memnama);
|
||||
return -1;
|
||||
}
|
||||
|
||||
@@ -337,7 +337,7 @@ BYTE memnama[9]; /* Member name (ASCIIZ) */
|
||||
if ((dirent->pds2usrd[8] & 0x01) == 0 || totlen != txtlen)
|
||||
{
|
||||
fprintf (stdout,
|
||||
"Warning: Member %s is not single text record\n",
|
||||
"HHCDS006W Member %s is not single text record\n",
|
||||
memnama);
|
||||
memtab[n].multitxt = 1;
|
||||
}
|
||||
@@ -346,7 +346,7 @@ BYTE memnama[9]; /* Member name (ASCIIZ) */
|
||||
if (totlen > 255*8)
|
||||
{
|
||||
fprintf (stdout,
|
||||
"Warning: Member %s size %4.4X "
|
||||
"HHCDS007W Member %s size %4.4X "
|
||||
"exceeds X\'7F8\' bytes\n",
|
||||
memnama, totlen);
|
||||
}
|
||||
@@ -355,7 +355,7 @@ BYTE memnama[9]; /* Member name (ASCIIZ) */
|
||||
if (totlen & 0x7)
|
||||
{
|
||||
fprintf (stdout,
|
||||
"Warning: Member %s size %4.4X "
|
||||
"HHCDS008W Member %s size %4.4X "
|
||||
"is not a multiple of 8\n",
|
||||
memnama, totlen);
|
||||
}
|
||||
@@ -409,14 +409,14 @@ BYTE refnama[9]; /* Referred name (ASCIIZ) */
|
||||
/* Skip the member if it is an alias */
|
||||
if (memp->alias)
|
||||
{
|
||||
fprintf (stdout, "Alias %s skipped\n", memnama);
|
||||
fprintf (stdout, "HHCDS009I Alias %s skipped\n", memnama);
|
||||
return 0;
|
||||
}
|
||||
|
||||
/* Skip the member if it has no XCTL table */
|
||||
if (memp->notable)
|
||||
{
|
||||
fprintf (stdout, "Member %s skipped\n", memnama);
|
||||
fprintf (stdout, "HHCDS010I Member %s skipped\n", memnama);
|
||||
return 0;
|
||||
}
|
||||
|
||||
@@ -424,7 +424,7 @@ BYTE refnama[9]; /* Referred name (ASCIIZ) */
|
||||
if (memp->multitxt)
|
||||
{
|
||||
fprintf (stdout,
|
||||
"Error: Member %s has multiple text records\n",
|
||||
"HHCDS011E Member %s has multiple text records\n",
|
||||
memnama);
|
||||
return -1;
|
||||
}
|
||||
@@ -436,13 +436,13 @@ BYTE refnama[9]; /* Referred name (ASCIIZ) */
|
||||
if (rc < 0)
|
||||
{
|
||||
fprintf (stdout,
|
||||
"Error: Member %s has invalid TTR %4.4X%2.2X\n",
|
||||
"HHCDS012E Member %s has invalid TTR %4.4X%2.2X\n",
|
||||
memnama, trk, rec);
|
||||
return -1;
|
||||
}
|
||||
|
||||
fprintf (stdout,
|
||||
"Processing member %s text record TTR=%4.4X%2.2X "
|
||||
"HHCDS013I Processing member %s text record TTR=%4.4X%2.2X "
|
||||
"CCHHR=%4.4X%4.4X%2.2X\n",
|
||||
memnama, trk, rec, cyl, head, rec);
|
||||
|
||||
@@ -452,7 +452,7 @@ BYTE refnama[9]; /* Referred name (ASCIIZ) */
|
||||
if (rc != 0)
|
||||
{
|
||||
fprintf (stdout,
|
||||
"Error: Member %s error reading TTR %4.4X%2.2X\n",
|
||||
"HHCDS014E Member %s error reading TTR %4.4X%2.2X\n",
|
||||
memnama, trk, rec);
|
||||
return -1;
|
||||
}
|
||||
@@ -461,7 +461,7 @@ BYTE refnama[9]; /* Referred name (ASCIIZ) */
|
||||
if (len < 8 || len > 1024 || (len & 0x7))
|
||||
{
|
||||
fprintf (stdout,
|
||||
"Error: Member %s TTR %4.4X%2.2X "
|
||||
"HHCDS015E Member %s TTR %4.4X%2.2X "
|
||||
"text record length %4.4X is not valid\n",
|
||||
memnama, trk, rec, len);
|
||||
return -1;
|
||||
@@ -471,7 +471,7 @@ BYTE refnama[9]; /* Referred name (ASCIIZ) */
|
||||
if (len != memp->dwdsize * 8)
|
||||
{
|
||||
fprintf (stdout,
|
||||
"Error: Member %s TTR %4.4X%2.2X "
|
||||
"HHCDS016E Member %s TTR %4.4X%2.2X "
|
||||
"text record length %4.4X does not match "
|
||||
"length %4.4X in directory\n",
|
||||
memnama, trk, rec, len, memp->dwdsize * 8);
|
||||
@@ -516,8 +516,8 @@ BYTE refnama[9]; /* Referred name (ASCIIZ) */
|
||||
if (xctloff >= len - 10)
|
||||
{
|
||||
fprintf (stdout,
|
||||
"Error: Member %s TTR %4.4X%2.2X "
|
||||
"XTCL table improperly terminated\n",
|
||||
"HHCDS017E Member %s TTR %4.4X%2.2X "
|
||||
"XCTL table improperly terminated\n",
|
||||
memnama, trk, rec);
|
||||
return -1;
|
||||
}
|
||||
@@ -538,7 +538,7 @@ BYTE refnama[9]; /* Referred name (ASCIIZ) */
|
||||
|
||||
/* Display XCTL table entry */
|
||||
fprintf (stdout,
|
||||
"In member %s: %s TTRL=%2.2X%2.2X%2.2X%2.2X",
|
||||
"HHCDS019I In member %s: %s TTRL=%2.2X%2.2X%2.2X%2.2X",
|
||||
memnama, refnama,
|
||||
blkptr[xctloff+2], blkptr[xctloff+3],
|
||||
blkptr[xctloff+4], blkptr[xctloff+5]);
|
||||
@@ -648,7 +648,7 @@ int nmem = 0; /* Number of array entries */
|
||||
if (memtab == NULL)
|
||||
{
|
||||
fprintf (stdout,
|
||||
"Cannot obtain storage for member array: %s\n",
|
||||
"HHCDS001E Cannot obtain storage for member array: %s\n",
|
||||
strerror(errno));
|
||||
return -1;
|
||||
}
|
||||
@@ -700,7 +700,7 @@ int nmem = 0; /* Number of array entries */
|
||||
} /* end while */
|
||||
|
||||
fprintf (stdout,
|
||||
"End of directory: %d members selected\n",
|
||||
"HHCDS002I End of directory: %d members selected\n",
|
||||
nmem);
|
||||
|
||||
#ifdef EXTERNALGUI
|
||||
|
||||
@@ -1,25 +1,271 @@
|
||||
<!DOCTYPE HTML PUBLIC "-//IETF//DTD HTML 3.0//EN" "html.dtd">
|
||||
<HTML>
|
||||
<HEAD><TITLE>
|
||||
Hercules Version 2: System Messages: TE - 1052/3270 Terminal Emulation</TITLE>
|
||||
Hercules Version 2: System Messages: DS - dasdisup</TITLE>
|
||||
<LINK REL=STYLESHEET TYPE="text/css" HREF="hercules.css">
|
||||
</HEAD>
|
||||
<BODY BGCOLOR="#ffffcc" TEXT="#000000" LINK="#0000A0"
|
||||
VLINK="#008040" ALINK="#000000">
|
||||
<h1>Hercules Version 2: System Messages: TE - 1052/3270 Terminal Emulation</h1>
|
||||
<h1>Hercules Version 2: System Messages: DS - dasdisup</h1>
|
||||
<p>
|
||||
This page describes the terminal emulation messages for the Hercules S/370,
|
||||
ESA/390, and z/Architecture emulator.
|
||||
This page describes the messages for the Hercules S/370,
|
||||
ESA/390, and z/Architecture emulator utility program <code>dasdisup</code>.
|
||||
<h3>Messages</h3>
|
||||
<dl>
|
||||
<dt><code><a name="HHCTE001I">
|
||||
HHCTE001I text
|
||||
<dt><code><a name="HHCDS001E">
|
||||
HHCDS001E Cannot obtain storage for member array: <em>error</em>
|
||||
</a></code>
|
||||
<dd><dl>
|
||||
<dt>Meaning
|
||||
<dd>
|
||||
<dd>An attempt to obtain storage for the array of SYS1.SVCLIB members
|
||||
failed. The error is described by <code><em>error</em></code>.
|
||||
<dt>Action
|
||||
<dd>Correct the error and rerun <code>dasdisup</code>.
|
||||
<dt>Issued by
|
||||
<dd>console.c
|
||||
<dd>dasdisup.c, function main
|
||||
</dl>
|
||||
<dt><code><a name="HHCDS002I">
|
||||
HHCDS002I End of directory: <em>count</em> members selected
|
||||
</a></code>
|
||||
<dd><dl>
|
||||
<dt>Meaning
|
||||
<dd>The end of the SYS1.SVCLIB directory has been reached.
|
||||
<code><em>count</em></code> members have been selected for processing.
|
||||
<dt>Issued by
|
||||
<dd>dasdisup.c, function main
|
||||
</dl>
|
||||
<dt><code><a name="HHCDS003E">
|
||||
HHCDS003E Directory block byte count is invalid
|
||||
</a></code>
|
||||
<dd><dl>
|
||||
<dt>Meaning
|
||||
<dd>The length of the directory block read is invalid. The SYS1.SVCLIB
|
||||
directory is probably corrupt.
|
||||
<dt>Action
|
||||
<dd>Rebuild SYS1.SVCLIB and rerun <code>dasdisup</code>.
|
||||
<dt>Issued by
|
||||
<dd>dasdisup.c, function process_dirblk
|
||||
</dl>
|
||||
<dt><code><a name="HHCDS004E">
|
||||
HHCDS004E Number of members exceeds MAX_MEMBERS
|
||||
</a></code>
|
||||
<dd><dl>
|
||||
<dt>Meaning
|
||||
<dd>SYS1.SVCLIB has too many members to fit in the array used to store
|
||||
their information.
|
||||
<dt>Action
|
||||
<dd>Increase the value of MAX_MEMBERS in <code>dasdisup.c</code> and
|
||||
recompile the program, then run it again.
|
||||
<dt>Issued by
|
||||
<dd>dasdisup.c, function process_dirblk
|
||||
</dl>
|
||||
<dt><code><a name="HHCDS005E">
|
||||
HHCDS005E Member <em>member</em> TTR count is zero
|
||||
</a></code>
|
||||
<dd><dl>
|
||||
<dt>Meaning
|
||||
<dd>The member named <code><em>member</em></code> has no data associated
|
||||
with it. Since aliases have been skipped already, this means
|
||||
that the SYS1.SVCLIB directory is corrupt.
|
||||
<dt>Action
|
||||
<dd>Rebuild SYS1.SVCLIB and run <code>dasdisup</code> again.
|
||||
<dt>Issued by
|
||||
<dd>dasdisup.c, function process_dirblk
|
||||
</dl>
|
||||
<dt><code><a name="HHCDS006W">
|
||||
HHCDS006W Member <em>member</em> is not single text record
|
||||
</a></code>
|
||||
<dd><dl>
|
||||
<dt>Meaning
|
||||
<dd>The member named <code><em>member</em></code> is not contained in a single
|
||||
text record. This is an invalid condition. The member will be skipped
|
||||
later, and message <a href="#HHCDS011E">HHCDS011E</a> will be issued.
|
||||
<dt>Action
|
||||
<dd>If this member must be processed, rebuild SYS1.SVCLIB and rerun
|
||||
<code>dasdisup</code>.
|
||||
<dt>Issued by
|
||||
<dd>dasdisup.c, function process_dirblk
|
||||
</dl>
|
||||
<dt><code><a name="HHCDS007W">
|
||||
HHCDS007W Member <em>member</em> size <em>size</em> exceeds X'7F8' bytes
|
||||
</a></code>
|
||||
<dd><dl>
|
||||
<dt>Meaning
|
||||
<dd>The member named <code><em>member</em></code> is too long. The maximum length of
|
||||
an OS/360 SVC load module is X'7F8' (2040 decimal) bytes. The member will
|
||||
be processed, but OS/360 will have problems with it.
|
||||
<dt>Action
|
||||
<dd>Correct the member in SYS1.SVCLIB and rerun <code>dasdisup</code>.
|
||||
<dt>Issued by
|
||||
<dd>dasdisup.c, function process_dirblk
|
||||
</dl>
|
||||
<dt><code><a name="HHCDS008W">
|
||||
HHCDS008W Member <em>member</em> size <em>size</em> is not a multiple of 8
|
||||
</a></code>
|
||||
<dd><dl>
|
||||
<dt>Meaning
|
||||
<dd>The member named <code><em>member</em></code> is not a multiple of 8 bytes long. Its
|
||||
actual size is <code><em>size</em></code>. This is not valid for an OS/360
|
||||
load module. OS/360 will issue an ABEND when an attempt is made to
|
||||
load the module.
|
||||
<dt>Action
|
||||
<dd>Correct the member in SYS1.SVCLIB and rerun <code>dasdisup</code>.
|
||||
<dt>Issued by
|
||||
<dd>dasdisup.c, function process_dirblk
|
||||
</dl>
|
||||
<dt><code><a name="HHCDS009I">
|
||||
HHCDS009I Alias <em>alias</em> skipped
|
||||
</a></code>
|
||||
<dd><dl>
|
||||
<dt>Meaning
|
||||
<dd>The alias named <code><em>alias</em></code> has been skipped, since no processing is
|
||||
necessary for it.
|
||||
<dt>Issued by
|
||||
<dd>dasdisup.c, function resolve_xctltab
|
||||
</dl>
|
||||
<dt><code><a name="HHCDS010I">
|
||||
HHCDS010I Member <em>member</em> skipped
|
||||
</a></code>
|
||||
<dd><dl>
|
||||
<dt>Meaning
|
||||
<dd>The member named <code><em>member</em></code> has been skipped, since it does not
|
||||
have an XCTL table.
|
||||
<dt>Action
|
||||
<dd>If the member should have an XCTL table, rebuild it
|
||||
in SYS1.SVCLIB and rerun <code>dasdisup</code>.
|
||||
<dt>Issued by
|
||||
<dd>dasdisup.c, function resolve_xctltab
|
||||
</dl>
|
||||
<dt><code><a name="HHCDS011E">
|
||||
HHCDS011E Member <em>member</em> has multiple text records
|
||||
</a></code>
|
||||
<dd><dl>
|
||||
<dt>Meaning
|
||||
<dd>The member named <code><em>member</em></code> has multiple text records. This
|
||||
is not a valid condition for an OS/360 SVC module. The member will not
|
||||
be processed. Message <a href="#HHCDS006W">HHCDS006W</a> was issued for
|
||||
this member earlier.
|
||||
<dt>Action
|
||||
<dd>If this member must be processed, rebuild it
|
||||
in SYS1.SVCLIB and rerun <code>dasdisup</code>.
|
||||
<dt>Issued by
|
||||
<dd>dasdisup.c, function resolve_xctltab
|
||||
</dl>
|
||||
<dt><code><a name="HHCDS012E">
|
||||
HHCDS012E Member <em>member</em> has invalid TTR <em>ttr</em>
|
||||
</a></code>
|
||||
<dd><dl>
|
||||
<dt>Meaning
|
||||
<dd>The pointer to the text record for the member named <code><em>member</em></code>
|
||||
is invalid. The pointer found is <code><em>ttr</em></code>. The member cannot be located
|
||||
to be processed. The SYS1.SVCLIB directory is probably corrupt.
|
||||
<dt>Action
|
||||
<dd>Rebuild SYS1.SVCLIB and rerun <code>dasdisup</code>.
|
||||
<dt>Issued by
|
||||
<dd>dasdisup.c, function resolve_xctltab
|
||||
</dl>
|
||||
<dt><code><a name="HHCDS013I">
|
||||
HHCDS013I Processing member <em>member</em> text record TTR=<em>ttr</em>
|
||||
CCHHR=<em>cchhr</em>
|
||||
</a></code>
|
||||
<dd><dl>
|
||||
<dt>Meaning
|
||||
<dd>The member named <code><em>member</em></code> is being processed. Its relative
|
||||
location is <code><em>ttr</em></code>, and its absolute location is <code><em>cchhr</em></code>.
|
||||
<dt>Issued by
|
||||
<dd>dasdisup.c, function resolve_xctltab
|
||||
</dl>
|
||||
<dt><code><a name="HHCDS014E">
|
||||
HHCDS014E Member <em>member</em> error reading TTR <em>ttr</em>
|
||||
</a></code>
|
||||
<dd><dl>
|
||||
<dt>Meaning
|
||||
<dd>An attempt to read the member named <code><em>member</em></code>, at the
|
||||
relative location <code><em>ttr</em></code>, failed. The member cannot be processed.
|
||||
<dt>Action
|
||||
<dd>Rebuild SYS1.SVCLIB and rerun <code>dasdisup</code>. If this
|
||||
is unsuccessful, rebuild the entire DASD volume.
|
||||
<dt>Issued by
|
||||
<dd>dasdisup.c, function resolve_xctltab
|
||||
</dl>
|
||||
<dt><code><a name="HHCDS015E">
|
||||
HHCDS015E Member <em>member</em> TTR <em>ttr</em> text record length
|
||||
<em>length</em> is not valid
|
||||
</a></code>
|
||||
<dd><dl>
|
||||
<dt>Meaning
|
||||
<dd>The length <code><em>length</em></code> of the text record at location <code><em>ttr</em></code>
|
||||
of the member named <code><em>member</em></code> is less than 8, greater than 1024,
|
||||
or not a multiple of 8. All of these conditions must be met for the
|
||||
length to be valid. The member is probably corrupt.
|
||||
<dt>Action
|
||||
<dd>Rebuild the member in SYS1.SVCLIB and rerun <code>dasdisup</code>.
|
||||
<dt>Issued by
|
||||
<dd>dasdisup.c, function resolve_xctltab
|
||||
</dl>
|
||||
<dt><code><a name="HHCDS016E">
|
||||
HHCDS016E Member <em>member</em> TTR <em>ttr</em> text record length
|
||||
<em>textlength</em> does not match length <em>dirlength</em> in directory
|
||||
</a></code>
|
||||
<dd><dl>
|
||||
<dt>Meaning
|
||||
<dd>The length <code><em>textlength</em></code> of the text record at location
|
||||
<code><em>ttr</em></code> is not the same as the length <code><em>dirlength</em></code> in the
|
||||
directory entry for member <code><em>member</em></code>. Either the member, or the
|
||||
directory, is probably corrupt.
|
||||
<dt>Action
|
||||
<dd>Rebuild the member in SYS1.SVCLIB and rerun <code>dasdisup</code>.
|
||||
If this does not correct the problem, rebuild SYS1.SVCLIB in its entirety.
|
||||
<dt>Issued by
|
||||
<dd>dasdisup.c, function resolve_xctltab
|
||||
</dl>
|
||||
<dt><code><a name="HHCDS017E">
|
||||
HHCDS017E Member <em>member</em> TTR <em>ttr</em> XCTL table
|
||||
improperly terminated
|
||||
</a></code>
|
||||
<dd><dl>
|
||||
<dt>Meaning
|
||||
<dd>The XCTL table in member <code><em>member</em></code> at location <code><em>ttr</em></code> runs
|
||||
past the end of the text record. The member is probably corrupt.
|
||||
<dt>Action
|
||||
<dd>Rebuild the member and rerun <code>dasdisup</code>.
|
||||
<dt>Issued by
|
||||
<dd>dasdisup.c, function resolve_xctltab
|
||||
</dl>
|
||||
<dt><code><a name="HHCDS018I">
|
||||
HHCDS018I <em>member</em>
|
||||
</code>(<code>Alias</code>|<code>Member</code>)<code> skipped
|
||||
</a></code>
|
||||
<dd><dl>
|
||||
<dt>Meaning
|
||||
<dd>The member or alias named <code><em>member</em></code> is not an Open, Close,
|
||||
or EOV module, and so does not have an XCTL table that needs to be
|
||||
updated. It has been skipped.
|
||||
<dt>Issued by
|
||||
<dd>dasdisup.c, function resolve_xctltab
|
||||
</dl>
|
||||
<dt><code><a name="HHCDS019I">
|
||||
HHCDS019I In member <em>member</em>: <em>reference</em> TTRL=<em>ttrl</em>
|
||||
<em>status</em>
|
||||
</a></code>
|
||||
<dd><dl>
|
||||
<dt>Meaning
|
||||
<dd>A reference to the member named <code><em>reference</em></code> in the
|
||||
member named <code><em>member</em></code> was found, The referenced member is at the
|
||||
location <code><em>ttrl</em></code> in the table. <code><em>status</em></code> is optional; it may
|
||||
be one of:
|
||||
<dl>
|
||||
<dt><code>** Member <em>reference</em> not found</code>
|
||||
<dd>The referenced member was not found in
|
||||
SYS1.SVCLIB. The reference cannot be updated.
|
||||
<dt><code>replaced by TTRL=<em>newttrl</em> <em>flag</em></code>
|
||||
<dd> The reference was updated to point to the referenced member's
|
||||
actual location at <code><em>newttrl</em></code>. If <code><em>flag</em></code> is
|
||||
<code>****</code>, the actual length of the referenced member is different
|
||||
from the length of the member in the reference pointer.
|
||||
</dl>
|
||||
<dt>Issued by
|
||||
<dd>dasdisup.c, function resolve_xctltab
|
||||
</dl>
|
||||
</dl>
|
||||
<p><center><hr width=15% noshade></center>
|
||||
@@ -27,9 +273,9 @@ HHCTE001I text
|
||||
If you have a question about Hercules, see the
|
||||
<a href="hercfaq.html">Hercules Frequently-Asked Questions</a> page.
|
||||
<p><center><hr width=15% noshade>
|
||||
<a href="hercinst.html"><img src="gifs/back.gif" border=0 alt="back"></a>
|
||||
<a href="hercmsg.html"><img src="gifs/back.gif" border=0 alt="back"></a>
|
||||
</center>
|
||||
<small>
|
||||
<p>Last updated 15 December 2002
|
||||
<p>Last updated 17 December 2002
|
||||
</BODY>
|
||||
</HTML>
|
||||
|
||||
@@ -259,7 +259,7 @@ static void http_dump_cgi_variables(WEBBLK *webblk)
|
||||
{
|
||||
CGIVAR *cv;
|
||||
for(cv = webblk->cgivar; cv; cv = cv->next)
|
||||
logmsg(_("HHS020D cgi_var_dump: pointer(%p) name(%s) value(%s) type(%d)\n"),
|
||||
logmsg(_("HHCHT012I cgi_var_dump: pointer(%p) name(%s) value(%s) type(%d)\n"),
|
||||
cv, cv->name, cv->value, cv->type);
|
||||
}
|
||||
#endif
|
||||
|
||||
2
po/de.po
2
po/de.po
@@ -5,7 +5,7 @@
|
||||
msgid ""
|
||||
msgstr ""
|
||||
"Project-Id-Version: hercules 2.16\n"
|
||||
"POT-Creation-Date: 2002-12-16 21:52-0600\n"
|
||||
"POT-Creation-Date: 2002-12-17 09:26-0600\n"
|
||||
"PO-Revision-Date: 2002-05-10 16:16+0200\n"
|
||||
"Last-Translator: Jan Jaeger <jj@septa.nl>\n"
|
||||
"Language-Team: none <test@li.org>\n"
|
||||
|
||||
@@ -7,7 +7,7 @@
|
||||
msgid ""
|
||||
msgstr ""
|
||||
"Project-Id-Version: PACKAGE VERSION\n"
|
||||
"POT-Creation-Date: 2002-12-16 21:52-0600\n"
|
||||
"POT-Creation-Date: 2002-12-17 09:26-0600\n"
|
||||
"PO-Revision-Date: YEAR-MO-DA HO:MI+ZONE\n"
|
||||
"Last-Translator: FULL NAME <EMAIL@ADDRESS>\n"
|
||||
"Language-Team: LANGUAGE <LL@li.org>\n"
|
||||
|
||||
2
po/nl.po
2
po/nl.po
@@ -5,7 +5,7 @@
|
||||
msgid ""
|
||||
msgstr ""
|
||||
"Project-Id-Version: hercules 2.16\n"
|
||||
"POT-Creation-Date: 2002-12-16 21:52-0600\n"
|
||||
"POT-Creation-Date: 2002-12-17 09:26-0600\n"
|
||||
"PO-Revision-Date: 2002-05-10 16:16+0200\n"
|
||||
"Last-Translator: Jan Jaeger <jj@septa.nl>\n"
|
||||
"Language-Team: none <test@li.org>\n"
|
||||
|
||||
Reference in New Issue
Block a user