Patch from Paul Green <Paul.Green@stratus.com> to be more POSIX-compatible
authorJelmer Vernooij <jelmer@samba.org>
Wed, 21 Aug 2002 19:59:23 +0000 (19:59 +0000)
committerJelmer Vernooij <jelmer@samba.org>
Wed, 21 Aug 2002 19:59:23 +0000 (19:59 +0000)
(This used to be commit addf29e6765393b25c35bd833d29e29e4581c233)

source3/include/includes.h
source3/lib/util_sock.c
source3/libsmb/clifile.c
source3/nsswitch/winbind_nss_config.h
source3/profile/profile.c
source3/utils/status.c

index 6084d583ed6aa5b5235f520f16a76ce39bc81188..9b597db78bc975d77bc2f3da7177b71ac9dcd2e0 100644 (file)
 #include <netinet/in.h>
 #include <arpa/inet.h>
 #include <netdb.h>
+
+#ifdef WITH_SYSLOG
 #include <syslog.h>
+#endif
+
 #include <sys/file.h>
 
 #ifdef HAVE_NETINET_TCP_H
index 5e2b7c5ed97f1c2bfba6785502b174dc1864ee44..56ef4a6ab1cd028d0b97e5b9587681fd2c641772 100644 (file)
@@ -871,7 +871,7 @@ static BOOL matchname(char *remotehost,struct in_addr  addr)
        
        /* Look up the host address in the address list we just got. */
        for (i = 0; hp->h_addr_list[i]; i++) {
-               if (memcmp(hp->h_addr_list[i], (caddr_t) & addr, sizeof(addr)) == 0)
+               if (memcmp(hp->h_addr_list[i], (char *) & addr, sizeof(addr)) == 0)
                        return True;
        }
        
index a47c956a55541b2ed34fad5982fb4c9f867dba49..07b1ff6b6f5dce750b5f2522da19f2900d24a878 100644 (file)
@@ -94,7 +94,7 @@ uint32  unix_perms_to_wire(mode_t perms)
         ret |= ((perms & S_ISGID) ?  UNIX_SET_GID : 0);
 #endif
 #ifdef S_ISUID
-        ret |= ((perms & S_ISVTX) ?  UNIX_SET_UID : 0);
+        ret |= ((perms & S_ISUID) ?  UNIX_SET_UID : 0);
 #endif
         return ret;
 }
index b9c738211e174dfb56b604a751cee479c34d1392..00cd5c12e4798dc08131cb3de47d8d92cc318c71 100644 (file)
 #include <unistd.h>
 #endif
 
+#ifdef HAVE_SYS_SELECT_H
+#include <sys/select.h>
+#endif
+
 #ifdef HAVE_SYS_SOCKET_H
 #include <sys/socket.h>
 #endif
index 595593c6f0d554eae4b0363df9299d99b0530337..bbcfc780e8b00028aa43a72bcb29a83924fd0e85 100644 (file)
@@ -21,7 +21,9 @@
 
 #include "includes.h"
 
+#ifdef WITH_PROFILE
 #define IPC_PERMS ((SHM_R | SHM_W) | (SHM_R>>3) | (SHM_R>>6))
+#endif /* WITH_PROFILE */
 
 static int shm_id;
 static BOOL read_only;
@@ -45,6 +47,7 @@ void profile_message(int msg_type, pid_t src, void *buf, size_t len)
         int level;
 
        memcpy(&level, buf, sizeof(int));
+#ifdef WITH_PROFILE
        switch (level) {
        case 0:         /* turn off profiling */
                do_profile_flag = False;
@@ -66,6 +69,9 @@ void profile_message(int msg_type, pid_t src, void *buf, size_t len)
                DEBUG(1,("INFO: Profiling values cleared from pid %d\n", (int)src));
                break;
        }
+#else /* WITH_PROFILE */
+       DEBUG(1,("INFO: Profiling support unavailable in this build.\n"));
+#endif /* WITH_PROFILE */
 }
 
 /****************************************************************************
@@ -87,6 +93,7 @@ void reqprofile_message(int msg_type, pid_t src, void *buf, size_t len)
 /*******************************************************************
   open the profiling shared memory area
   ******************************************************************/
+#ifdef WITH_PROFILE
 BOOL profile_setup(BOOL rdonly)
 {
        struct shmid_ds shm_ds;
@@ -154,3 +161,4 @@ BOOL profile_setup(BOOL rdonly)
        message_register(MSG_REQ_PROFILELEVEL, reqprofile_message);
        return True;
 }
+#endif /* WITH_PROFILE */
index 0b0c591cb16a13a531210bb16d4371a58dc480fa..d87497f2fa333576065d1c65d3dea1cbc43c7eff 100644 (file)
@@ -146,6 +146,7 @@ static void print_brl(SMB_DEV_T dev, SMB_INO_T ino, int pid,
   ******************************************************************/
 static int profile_dump(void)
 {
+#ifdef WITH_PROFILE
        if (!profile_setup(True)) {
                fprintf(stderr,"Failed to initialise profile memory\n");
                return -1;
@@ -482,6 +483,9 @@ static int profile_dump(void)
        d_printf("run_elections_time:             %u\n", profile_p->run_elections_time);
        d_printf("election_count:                 %u\n", profile_p->election_count);
        d_printf("election_time:                  %u\n", profile_p->election_time);
+#else /* WITH_PROFILE */
+       fprintf(stderr, "Profile data unavailable\n");
+#endif /* WITH_PROFILE */
 
        return 0;
 }
@@ -549,7 +553,9 @@ static int traverse_sessionid(TDB_CONTEXT *tdb, TDB_DATA kbuf, TDB_DATA dbuf, vo
                {"conf",        's', POPT_ARG_STRING,   0, 's'},
                {"user",        'u', POPT_ARG_STRING,   0, 'u'},
                {"brief",       'b', POPT_ARG_NONE,     &brief},
+#ifdef WITH_PROFILE
                {"profile",     'P', POPT_ARG_NONE,     &profile_only},
+#endif /* WITH_PROFILE */
                {"byterange",   'B', POPT_ARG_NONE,     &show_brl},
                { NULL, 0, POPT_ARG_INCLUDE_TABLE, popt_common_debug },
                { 0, 0, 0, 0}