From 3ab97ebe6db1a5a4a0573c7c8482c94876bbce9a Mon Sep 17 00:00:00 2001 From: Samba Release Account Date: Fri, 30 May 1997 20:40:48 +0000 Subject: charcnv.c: Fixed silly bugs detected on IRIX. client.c: Fixed silly bugs detected on IRIX. namedbname.c: Stopped 1d names from being registered in WINS db. namedbsubnet.c: Only register 1e names on broadcast subnet. nameelect.c: Changed add_my_name entries. Forced host announces if we have less than 10 servers listed. Fixed registering 1b domain name issues. namepacket.c: Added error message when dgram discarded. nameserv.c: Added notion of 'direct' names that are not registered on the network. Needed to get around bugs in earlier nmbd handling of DOMAIN(1b) names. nameservreply.c:Tidied up debug message. nameservresp.c: Added response_name_query_domain() code. Deals with re-registering DOMAIN(1b) name. nmbd.c: Fixed silly bugs detected on IRIX. nmblib.c: Added paranoia debugs. proto.h: Updated remove_name_entry(), add_my_name_entry(). server.c: Fixed silly bugs detected on IRIX. trans2.c: Fixed silly bugs detected on IRIX. uid.c: Fixed silly bugs detected on IRIX. version.h: Updated to alpha3. Jeremy (jallison@whistle.com). (This used to be commit f08222bd8b86a061c52d22015f946a4737eb47fd) --- source3/smbd/server.c | 2 +- source3/smbd/trans2.c | 1 - source3/smbd/uid.c | 3 +-- 3 files changed, 2 insertions(+), 4 deletions(-) (limited to 'source3/smbd') diff --git a/source3/smbd/server.c b/source3/smbd/server.c index 4ae139fc58..51710b7b77 100644 --- a/source3/smbd/server.c +++ b/source3/smbd/server.c @@ -1358,7 +1358,7 @@ BOOL check_file_sharing(int cnum,char *fname) if (old_shares[i].share_mode != DENY_DOS) goto free_and_exit; - if(old_shares[i].pid != pid); + if(old_shares[i].pid != pid) goto free_and_exit; } diff --git a/source3/smbd/trans2.c b/source3/smbd/trans2.c index 1d9977c66e..1f727c4ecd 100644 --- a/source3/smbd/trans2.c +++ b/source3/smbd/trans2.c @@ -941,7 +941,6 @@ static int call_trans2qfsinfo(char *inbuf, char *outbuf, int length, int bufsize DEBUG(5,("call_trans2qfsinfo : SMB_QUERY_FS_VOLUME_INFO namelen = %d, vol = %s\n", strlen(vname), vname)); break; - break; case SMB_QUERY_FS_SIZE_INFO: { int dfree,dsize,bsize; diff --git a/source3/smbd/uid.c b/source3/smbd/uid.c index e2c5f590b7..7a903e0551 100644 --- a/source3/smbd/uid.c +++ b/source3/smbd/uid.c @@ -466,6 +466,5 @@ int smbrun(char *cmd,char *outfile,BOOL shared) /* not reached */ exit(82); #endif + return 1; } - - -- cgit