diff options
author | Jelmer Vernooij <jelmer@samba.org> | 2008-10-23 15:37:39 +0200 |
---|---|---|
committer | Jelmer Vernooij <jelmer@samba.org> | 2008-10-23 15:37:39 +0200 |
commit | f9fb9436ae7a6556d3636f732889bae136a81390 (patch) | |
tree | 5b4020629846e5e3b26ea5f628509de121c6ed19 /source3/libsmb | |
parent | 44b728958ae9a48bb56591532e5db9867311c1b9 (diff) | |
download | samba-f9fb9436ae7a6556d3636f732889bae136a81390.tar.gz samba-f9fb9436ae7a6556d3636f732889bae136a81390.tar.bz2 samba-f9fb9436ae7a6556d3636f732889bae136a81390.zip |
Use WERR_FILE_EXISTS which is the equivalent of WERR_ALREADY_EXISTS
previously present in Samba 3.
Diffstat (limited to 'source3/libsmb')
-rw-r--r-- | source3/libsmb/doserr.c | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/source3/libsmb/doserr.c b/source3/libsmb/doserr.c index d14733a534..0cccae1e6a 100644 --- a/source3/libsmb/doserr.c +++ b/source3/libsmb/doserr.c @@ -42,7 +42,7 @@ werror_code_struct dos_errs[] = { "WERR_INSUFFICIENT_BUFFER", WERR_INSUFFICIENT_BUFFER }, { "WERR_SEM_TIMEOUT", WERR_SEM_TIMEOUT }, { "WERR_NO_SUCH_SHARE", WERR_NO_SUCH_SHARE }, - { "WERR_ALREADY_EXISTS", WERR_ALREADY_EXISTS }, + { "WERR_FILE_EXISTS", WERR_FILE_EXISTS }, { "WERR_INVALID_PARAM", WERR_INVALID_PARAM }, { "WERR_NOT_SUPPORTED", WERR_NOT_SUPPORTED }, { "WERR_BAD_PASSWORD", WERR_BAD_PASSWORD }, |