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

File:
1 edited

Legend:

Unmodified
Added
Removed
  • vendor/current/source3/printing/load.c

    r746 r988  
    2121#include "printing/pcap.h"
    2222#include "printing/load.h"
     23#include "lib/param/loadparm.h"
    2324
    2425/***************************************************************************
     
    4041                return;
    4142
    42         auto_serv = lp_auto_services();
     43        auto_serv = lp_auto_services(talloc_tos());
    4344        str = SMB_STRDUP(auto_serv);
    4445        TALLOC_FREE(auto_serv);
     
    6566                   struct messaging_context *msg_ctx)
    6667{
    67         SMB_ASSERT(pcap_cache_loaded());
     68        SMB_ASSERT(pcap_cache_loaded(NULL));
    6869
    6970        add_auto_printers();
     
    7172        /* load all printcap printers */
    7273        if (lp_load_printers() && lp_servicenumber(PRINTERS_NAME) >= 0)
    73                 pcap_printer_fn(lp_add_one_printer, NULL);
     74                pcap_printer_read_fn(lp_add_one_printer, NULL);
    7475}
Note: See TracChangeset for help on using the changeset viewer.