summaryrefslogtreecommitdiff
path: root/source3/libsmb/libsmbclient.c
diff options
context:
space:
mode:
authorRichard Sharpe <sharpe@samba.org>2001-05-15 01:45:54 +0000
committerRichard Sharpe <sharpe@samba.org>2001-05-15 01:45:54 +0000
commiteb40ad72baba90a9fdc9372340358864025c36a3 (patch)
treea9ff84428b2f3aa83f1cedfe5367634cd8de4a0c /source3/libsmb/libsmbclient.c
parent98da4768df0939611bdfe7fb919c111013bc960a (diff)
downloadsamba-eb40ad72baba90a9fdc9372340358864025c36a3.tar.gz
samba-eb40ad72baba90a9fdc9372340358864025c36a3.tar.bz2
samba-eb40ad72baba90a9fdc9372340358864025c36a3.zip
Change EUCLEAN to EINVAL, as some systems do not have EUCLEAN, and EINVAL
is a better return code anyway (I knew that :-) (This used to be commit 0bf2797b183b4d709a401ebdb2d5f3d5b1c907af)
Diffstat (limited to 'source3/libsmb/libsmbclient.c')
-rw-r--r--source3/libsmb/libsmbclient.c48
1 files changed, 24 insertions, 24 deletions
diff --git a/source3/libsmb/libsmbclient.c b/source3/libsmb/libsmbclient.c
index 0873661317..2b93614338 100644
--- a/source3/libsmb/libsmbclient.c
+++ b/source3/libsmb/libsmbclient.c
@@ -528,7 +528,7 @@ int smbc_open(const char *fname, int flags, mode_t mode)
if (!smbc_initialized) {
- errno = EUCLEAN; /* Best I can think of ... */
+ errno = EINVAL; /* Best I can think of ... */
return -1;
}
@@ -636,7 +636,7 @@ int smbc_creat(const char *path, mode_t mode)
if (!smbc_initialized) {
- errno = EUCLEAN;
+ errno = EINVAL;
return -1;
}
@@ -655,7 +655,7 @@ ssize_t smbc_read(int fd, void *buf, size_t count)
if (!smbc_initialized) {
- errno = EUCLEAN;
+ errno = EINVAL;
return -1;
}
@@ -715,7 +715,7 @@ ssize_t smbc_write(int fd, void *buf, size_t count)
if (!smbc_initialized) {
- errno = EUCLEAN;
+ errno = EINVAL;
return -1;
}
@@ -769,7 +769,7 @@ int smbc_close(int fd)
if (!smbc_initialized) {
- errno = EUCLEAN;
+ errno = EINVAL;
return -1;
}
@@ -822,7 +822,7 @@ int smbc_unlink(const char *fname)
if (!smbc_initialized) {
- errno = EUCLEAN; /* Best I can think of ... */
+ errno = EINVAL; /* Best I can think of ... */
return -1;
}
@@ -913,7 +913,7 @@ int smbc_rename(const char *oname, const char *nname)
if (!smbc_initialized) {
- errno = EUCLEAN; /* Best I can think of ... */
+ errno = EINVAL; /* Best I can think of ... */
return -1;
}
@@ -980,7 +980,7 @@ off_t smbc_lseek(int fd, off_t offset, int whence)
if (!smbc_initialized) {
- errno = EUCLEAN;
+ errno = EINVAL;
return -1;
}
@@ -1107,7 +1107,7 @@ BOOL smbc_getatr(struct smbc_server *srv, char *path,
if (!smbc_initialized) {
- errno = EUCLEAN;
+ errno = EINVAL;
return -1;
}
@@ -1145,7 +1145,7 @@ int smbc_stat(const char *fname, struct stat *st)
if (!smbc_initialized) {
- errno = EUCLEAN; /* Best I can think of ... */
+ errno = EINVAL; /* Best I can think of ... */
return -1;
}
@@ -1229,7 +1229,7 @@ int smbc_fstat(int fd, struct stat *st)
if (!smbc_initialized) {
- errno = EUCLEAN;
+ errno = EINVAL;
return -1;
}
@@ -1448,7 +1448,7 @@ int smbc_opendir(const char *fname)
if (!smbc_initialized) {
- errno = EUCLEAN;
+ errno = EINVAL;
return -1;
}
@@ -1754,7 +1754,7 @@ int smbc_closedir(int fd)
if (!smbc_initialized) {
- errno = EUCLEAN;
+ errno = EINVAL;
return -1;
}
@@ -1805,7 +1805,7 @@ struct smbc_dirent *smbc_readdir(unsigned int fd)
if (!smbc_initialized) {
- errno = EUCLEAN;
+ errno = EINVAL;
return NULL;
}
@@ -1876,7 +1876,7 @@ int smbc_getdents(unsigned int fd, struct smbc_dirent *dirp, int count)
if (!smbc_initialized) {
- errno = EUCLEAN;
+ errno = EINVAL;
return -1;
}
@@ -1971,7 +1971,7 @@ int smbc_mkdir(const char *fname, mode_t mode)
if (!smbc_initialized) {
- errno = EUCLEAN;
+ errno = EINVAL;
return -1;
}
@@ -2055,7 +2055,7 @@ int smbc_rmdir(const char *fname)
if (!smbc_initialized) {
- errno = EUCLEAN;
+ errno = EINVAL;
return -1;
}
@@ -2151,7 +2151,7 @@ off_t smbc_telldir(int fd)
if (!smbc_initialized) {
- errno = EUCLEAN;
+ errno = EINVAL;
return -1;
}
@@ -2225,7 +2225,7 @@ int smbc_lseekdir(int fd, off_t offset)
if (!smbc_initialized) {
- errno = EUCLEAN;
+ errno = EINVAL;
return -1;
}
@@ -2287,7 +2287,7 @@ int smbc_fstatdir(int fd, struct stat *st)
if (!smbc_initialized) {
- errno = EUCLEAN;
+ errno = EINVAL;
return -1;
}
@@ -2312,7 +2312,7 @@ int smbc_print_file(const char *fname, const char *printq)
if (!smbc_initialized) {
- errno = EUCLEAN;
+ errno = EINVAL;
return -1;
}
@@ -2386,7 +2386,7 @@ int smbc_open_print_job(const char *fname)
if (!smbc_initialized) {
- errno = EUCLEAN;
+ errno = EINVAL;
return -1;
}
@@ -2420,7 +2420,7 @@ int smbc_list_print_jobs(const char *fname, void (*fn)(struct print_job_info *))
if (!smbc_initialized) {
- errno = EUCLEAN;
+ errno = EINVAL;
return -1;
}
@@ -2470,7 +2470,7 @@ int smbc_unlink_print_job(const char *fname, int id)
if (!smbc_initialized) {
- errno = EUCLEAN;
+ errno = EINVAL;
return -1;
}