summaryrefslogtreecommitdiff
path: root/source3
diff options
context:
space:
mode:
authorRichard Sharpe <sharpe@samba.org>2001-03-09 03:59:45 +0000
committerRichard Sharpe <sharpe@samba.org>2001-03-09 03:59:45 +0000
commit632ed01166859ab92e53cbb4d08b966a679ce2a9 (patch)
tree51ec38e9ad1861c45b175f2611c348b2b250d49a /source3
parent6c99c38cbf8726090648e081a690039c6eb59f62 (diff)
downloadsamba-632ed01166859ab92e53cbb4d08b966a679ce2a9.tar.gz
samba-632ed01166859ab92e53cbb4d08b966a679ce2a9.tar.bz2
samba-632ed01166859ab92e53cbb4d08b966a679ce2a9.zip
Fixes to testsmbc to ensure it will compile on SGI ...
(This used to be commit ad3a21b2810883ec38f58bf8f8996a376536c762)
Diffstat (limited to 'source3')
-rw-r--r--source3/client/testsmbc.c49
1 files changed, 31 insertions, 18 deletions
diff --git a/source3/client/testsmbc.c b/source3/client/testsmbc.c
index d2dce7ccab..7aae9d8561 100644
--- a/source3/client/testsmbc.c
+++ b/source3/client/testsmbc.c
@@ -24,6 +24,9 @@
#include <stdio.h>
#include <errno.h>
#include <sys/time.h>
+#include <string.h>
+#include <unistd.h>
+#include <stdlib.h>
#include <libsmbclient.h>
void auth_fn(const char *server, const char *share,
@@ -79,7 +82,7 @@ int main(int argc, char *argv[])
const char *file2 = "smb://samba/public/testfile2.txt";
char buff[256];
char dirbuf[512];
- struct smbc_dirent *dirp;
+ char *dirp;
struct stat st1, st2;
err = smbc_init(auth_fn, 10); /* Initialize things */
@@ -169,9 +172,10 @@ int main(int argc, char *argv[])
/* Now, list those directories, but in funny ways ... */
- dirp = (struct smbc_dirent *)dirbuf;
+ dirp = (char *)dirbuf;
- if ((dirc = smbc_getdents(dh1, dirp, sizeof(dirbuf))) < 0) {
+ if ((dirc = smbc_getdents(dh1, (struct smbc_dirent *)dirp,
+ sizeof(dirbuf))) < 0) {
fprintf(stderr, "Problems getting directory entries: %s\n",
strerror(errno));
@@ -186,18 +190,21 @@ int main(int argc, char *argv[])
while (dirc > 0) {
- dsize = dirp->dirlen;
+ dsize = ((struct smbc_dirent *)dirp)->dirlen;
fprintf(stdout, "Dir Ent, Type: %u, Name: %s, Comment: %s\n",
- dirp->smbc_type, dirp->name, dirp->comment);
+ ((struct smbc_dirent *)dirp)->smbc_type,
+ ((struct smbc_dirent *)dirp)->name,
+ ((struct smbc_dirent *)dirp)->comment);
- (char *)dirp += dsize;
+ dirp += dsize;
(char *)dirc -= dsize;
}
- dirp = (struct smbc_dirent *)dirbuf;
+ dirp = (char *)dirbuf;
- if ((dirc = smbc_getdents(dh2, dirp, sizeof(dirbuf))) < 0) {
+ if ((dirc = smbc_getdents(dh2, (struct smbc_dirent *)dirp,
+ sizeof(dirbuf))) < 0) {
fprintf(stderr, "Problems getting directory entries: %s\n",
strerror(errno));
@@ -212,18 +219,21 @@ int main(int argc, char *argv[])
while (dirc > 0) {
- dsize = dirp->dirlen;
+ dsize = ((struct smbc_dirent *)dirp)->dirlen;
fprintf(stdout, "Dir Ent, Type: %u, Name: %s, Comment: %s\n",
- dirp->smbc_type, dirp->name, dirp->comment);
+ ((struct smbc_dirent *)dirp)->smbc_type,
+ ((struct smbc_dirent *)dirp)->name,
+ ((struct smbc_dirent *)dirp)->comment);
- (char *)dirp += dsize;
+ dirp += dsize;
(char *)dirc -= dsize;
}
- dirp = (struct smbc_dirent *)dirbuf;
+ dirp = (char *)dirbuf;
- if ((dirc = smbc_getdents(dh3, dirp, sizeof(dirbuf))) < 0) {
+ if ((dirc = smbc_getdents(dh3, (struct smbc_dirent *)dirp,
+ sizeof(dirbuf))) < 0) {
fprintf(stderr, "Problems getting directory entries: %s\n",
strerror(errno));
@@ -238,9 +248,11 @@ int main(int argc, char *argv[])
while (dirc > 0) {
- dsize = dirp->dirlen;
+ dsize = ((struct smbc_dirent *)dirp)->dirlen;
fprintf(stdout, "\nDir Ent, Type: %u, Name: %s, Comment: %s\n",
- dirp->smbc_type, dirp->name, dirp->comment);
+ ((struct smbc_dirent *)dirp)->smbc_type,
+ ((struct smbc_dirent *)dirp)->name,
+ ((struct smbc_dirent *)dirp)->comment);
(char *)dirp += dsize;
(char *)dirc -= dsize;
@@ -255,7 +267,7 @@ int main(int argc, char *argv[])
* read from the command line ...
*/
- fd = smbc_open(file, O_RDWR | O_CREAT, 0666);
+ fd = smbc_open(file, O_RDWR | O_CREAT | O_TRUNC, 0666);
if (fd < 0) {
@@ -393,10 +405,10 @@ int main(int argc, char *argv[])
}
fprintf(stdout, "Stat'ed file: %s. Size = %d, mode = %04X\n", file2,
- st2.st_size, st2.st_mode);
+ (int)st2.st_size, st2.st_mode);
fprintf(stdout, " time: %s\n", ctime(&st2.st_atime));
fprintf(stdout, "Earlier stat: %s, Size = %d, mode = %04X\n", file,
- st1.st_size, st1.st_mode);
+ (int)st1.st_size, st1.st_mode);
fprintf(stdout, " time: %s\n", ctime(&st1.st_atime));
/* Now, make a directory ... */
@@ -440,4 +452,5 @@ int main(int argc, char *argv[])
}
fprintf(stdout, "Made dir: make-dir\n");
+ return 0;
}