From dace013898a450b50606740704c83ba25855e332 Mon Sep 17 00:00:00 2001 From: Volker Lendecke Date: Tue, 27 Jul 2010 10:59:55 +0200 Subject: s3: Remove a typedef (struct file_info) --- source3/include/client.h | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) (limited to 'source3/include/client.h') diff --git a/source3/include/client.h b/source3/include/client.h index d2afecf054..861ae5aace 100644 --- a/source3/include/client.h +++ b/source3/include/client.h @@ -279,7 +279,7 @@ struct cli_state { struct tevent_req **pending; }; -typedef struct file_info { +struct file_info { struct cli_state *cli; uint64_t size; uint16 mode; @@ -291,7 +291,7 @@ typedef struct file_info { struct timespec ctime_ts; char *name; char short_name[13*3]; /* the *3 is to cope with multi-byte */ -} file_info; +}; #define CLI_FULL_CONNECTION_DONT_SPNEGO 0x0001 #define CLI_FULL_CONNECTION_USE_KERBEROS 0x0002 -- cgit