Ignore:
Timestamp:
Nov 24, 2016, 1:14:11 PM (9 years ago)
Author:
Silvan Scherrer
Message:

Samba Server: update vendor to version 4.4.3

Location:
vendor/current/source4/ntp_signd
Files:
2 edited

Legend:

Unmodified
Added
Removed
  • vendor/current/source4/ntp_signd/ntp_signd.c

    r746 r988  
    4242#include "system/passwd.h"
    4343
     44NTSTATUS server_service_ntp_signd_init(void);
     45
    4446/*
    4547  top level context structure for the ntp_signd server
     
    179181
    180182        if (res->count == 0) {
    181                 DEBUG(5, ("Failed to find SID %s in SAM for NTP signing\n",
     183                DEBUG(2, ("Failed to find SID %s in SAM for NTP signing\n",
    182184                          dom_sid_string(mem_ctx, sid)));
     185                return signing_failure(ntp_signd_conn,
     186                                       mem_ctx,
     187                                       output,
     188                                       sign_request.packet_id);
    183189        } else if (res->count != 1) {
    184190                DEBUG(1, ("Found SID %s %u times in SAM for NTP signing\n",
     
    493499        const char *address;
    494500
    495         if (!directory_create_or_exist(lpcfg_ntp_signd_socket_directory(task->lp_ctx), geteuid(), 0755)) {
     501        if (!directory_create_or_exist_strict(lpcfg_ntp_signd_socket_directory(task->lp_ctx), geteuid(), 0750)) {
    496502                char *error = talloc_asprintf(task, "Cannot create NTP signd pipe directory: %s",
    497503                                              lpcfg_ntp_signd_socket_directory(task->lp_ctx));
  • vendor/current/source4/ntp_signd/wscript_build

    r740 r988  
    77        deps='samdb NDR_NTP_SIGND LIBTSOCKET LIBSAMBA_TSOCKET',
    88        internal_module=False,
     9        enabled=bld.AD_DC_BUILD_IS_ENABLED()
    910        )
    1011
Note: See TracChangeset for help on using the changeset viewer.