summaryrefslogtreecommitdiffstats
path: root/source/include/proto.h
diff options
context:
space:
mode:
authorSamba Release Account <samba-bugs@samba.org>1997-02-23 05:18:09 +0000
committerSamba Release Account <samba-bugs@samba.org>1997-02-23 05:18:09 +0000
commitd8d8a7ee00971fca7a8d079bfb547af107df35a4 (patch)
tree5638173b0f00023cc0e8f41ff0b860fdcccd7758 /source/include/proto.h
parent8851556da7b8795b69fa17cfd799ed328743e654 (diff)
downloadsamba-d8d8a7ee00971fca7a8d079bfb547af107df35a4.tar.gz
samba-d8d8a7ee00971fca7a8d079bfb547af107df35a4.tar.xz
samba-d8d8a7ee00971fca7a8d079bfb547af107df35a4.zip
Makefile: Added cleandir target.
chgpasswd.c: Added patch from Roland Haag <haag@think.de> to allow password changes to be done more than once. loadparm.c: Added entries for the "directory mode/directory mask parameters". Changed default file mode to 644. proto.h: Added sys_gethostbyname. server.c: Added directory mode changes. system.c: Added sys_gethostbyname. trans2.c: Added NT_FILE_ATTRIBUTE_NORMAL patch from Roger Orr <rorr@csfp.csfb.com> trans2.h: Defined NT_FILE_ATTRIBUTE_NORMAL for above patch. util.c: Changes calls to gethostbyname to sys_gethostbyname. jra@cygnus.com
Diffstat (limited to 'source/include/proto.h')
-rw-r--r--source/include/proto.h2
1 files changed, 2 insertions, 0 deletions
diff --git a/source/include/proto.h b/source/include/proto.h
index 5993e1d67bc..2cd8cfe2a80 100644
--- a/source/include/proto.h
+++ b/source/include/proto.h
@@ -238,6 +238,7 @@ BOOL lp_map_system(int );
BOOL lp_delete_readonly(int );
BOOL lp_fake_oplocks(int );
int lp_create_mode(int );
+int lp_dir_mode(int );
int lp_max_connections(int );
int lp_defaultcase(int );
int lp_minprintspace(int );
@@ -762,6 +763,7 @@ int sys_rename(char *from, char *to);
int sys_chmod(char *fname,int mode);
int sys_chown(char *fname,int uid,int gid);
int sys_chroot(char *dname);
+struct hostent *sys_gethostbyname(char *name);
/*The following definitions come from testparm.c */