diff options
author | Andrew Tridgell <tridge@samba.org> | 2010-11-17 23:10:48 +1100 |
---|---|---|
committer | Andrew Tridgell <tridge@samba.org> | 2010-11-17 23:55:39 +1100 |
commit | 9a744c634ff55c166294d63d192649ad238f9bf6 (patch) | |
tree | 88e60515fc9d692215c74266970cde4ddee0abfa /libcli/util | |
parent | 1645190b1c0a4708cb3110bc94c1b9ec3e0d77e4 (diff) | |
download | samba-9a744c634ff55c166294d63d192649ad238f9bf6.tar.gz samba-9a744c634ff55c166294d63d192649ad238f9bf6.tar.bz2 samba-9a744c634ff55c166294d63d192649ad238f9bf6.zip |
s4-doserr: telling our users to "see Windows help" doesn't seem right
Diffstat (limited to 'libcli/util')
-rw-r--r-- | libcli/util/doserr.c | 8 |
1 files changed, 4 insertions, 4 deletions
diff --git a/libcli/util/doserr.c b/libcli/util/doserr.c index 1663edb520..a0c152db18 100644 --- a/libcli/util/doserr.c +++ b/libcli/util/doserr.c @@ -3349,9 +3349,9 @@ const struct werror_str_struct dos_err_strs[] = { { WERR_ADDRESS_NOT_ASSOCIATED, "An address has not yet been associated with the network endpoint." }, { WERR_CONNECTION_INVALID, "An operation was attempted on a nonexistent network connection." }, { WERR_CONNECTION_ACTIVE, "An invalid operation was attempted on an active network connection." }, - { WERR_NETWORK_UNREACHABLE, "The network location cannot be reached. For information about network troubleshooting, see Windows Help." }, - { WERR_HOST_UNREACHABLE, "The network location cannot be reached. For information about network troubleshooting, see Windows Help." }, - { WERR_PROTOCOL_UNREACHABLE, "The network location cannot be reached. For information about network troubleshooting, see Windows Help." }, + { WERR_NETWORK_UNREACHABLE, "The network location cannot be reached." }, + { WERR_HOST_UNREACHABLE, "The network location cannot be reached." }, + { WERR_PROTOCOL_UNREACHABLE, "The network location cannot be reached." }, { WERR_PORT_UNREACHABLE, "No service is operating at the destination network endpoint on the remote system." }, { WERR_REQUEST_ABORTED, "The request was aborted." }, { WERR_CONNECTION_ABORTED, "The network connection was aborted by the local system." }, @@ -3374,7 +3374,7 @@ const struct werror_str_struct dos_err_strs[] = { { WERR_BAD_USER_PROFILE, "The specified user does not have a valid profile." }, { WERR_NOT_SUPPORTED_ON_SBS, "This operation is not supported on a computer running Windows ServerĀ 2003 for Small Business Server." }, { WERR_SERVER_SHUTDOWN_IN_PROGRESS, "The server machine is shutting down." }, - { WERR_HOST_DOWN, "The remote system is not available. For information about network troubleshooting, see Windows Help." }, + { WERR_HOST_DOWN, "The remote system is not available." }, { WERR_NON_ACCOUNT_SID, "The security identifier provided is not from an account domain." }, { WERR_NON_DOMAIN_SID, "The security identifier provided does not have a domain component." }, { WERR_APPHELP_BLOCK, "AppHelp dialog canceled, thus preventing the application from starting." }, |