diff options
author | Gerald Carter <jerry@samba.org> | 2004-01-31 18:27:35 +0000 |
---|---|---|
committer | Gerald Carter <jerry@samba.org> | 2004-01-31 18:27:35 +0000 |
commit | e827764d0a6a39f587a7d3143e22b3887112b41e (patch) | |
tree | 09a674809876894c96e679ae845c0f6b9e2607f0 /source3/param | |
parent | 87d74fed8c6438cbf7dc690aed2f8f866fab95e3 (diff) | |
download | samba-e827764d0a6a39f587a7d3143e22b3887112b41e.tar.gz samba-e827764d0a6a39f587a7d3143e22b3887112b41e.tar.bz2 samba-e827764d0a6a39f587a7d3143e22b3887112b41e.zip |
* BUG 101: patch from j.lu@tiesse.com to set the SV_TYPE_PRINTQ_SERVER;
* don't set the unix_ERR_XX code in mkdir_internal, let the error mapping
handle it.
(This used to be commit 758bbfb5f133c3c85e3092ad88294ae4abbbbc6f)
Diffstat (limited to 'source3/param')
-rw-r--r-- | source3/param/loadparm.c | 110 |
1 files changed, 6 insertions, 104 deletions
diff --git a/source3/param/loadparm.c b/source3/param/loadparm.c index 1fa3efabf8..e0c6f821a1 100644 --- a/source3/param/loadparm.c +++ b/source3/param/loadparm.c @@ -2399,8 +2399,6 @@ BOOL lp_add_printer(const char *pszPrintername, int iDefaultService) DEBUG(3, ("adding printer service %s\n", pszPrintername)); - update_server_announce_as_printserver(); - return (True); } @@ -2753,99 +2751,6 @@ static BOOL handle_netbios_aliases(const char *pszParmValue, char **ptr) } /*************************************************************************** - Do the work of sourcing in environment variable/value pairs. -***************************************************************************/ - -static BOOL source_env(char **lines) -{ - char *varval; - size_t len; - int i; - char *p; - - for (i = 0; lines[i]; i++) { - char *line = lines[i]; - - if ((len = strlen(line)) == 0) - continue; - - if (line[len - 1] == '\n') - line[--len] = '\0'; - - if ((varval = malloc(len + 1)) == NULL) { - DEBUG(0, ("source_env: Not enough memory!\n")); - return (False); - } - - DEBUG(4, ("source_env: Adding to environment: %s\n", line)); - strncpy(varval, line, len); - varval[len] = '\0'; - - p = strchr_m(line, (int)'='); - if (p == NULL) { - DEBUG(4, ("source_env: missing '=': %s\n", line)); - continue; - } - - if (putenv(varval)) { - DEBUG(0, ("source_env: Failed to put environment variable %s\n", - varval)); - continue; - } - - *p = '\0'; - p++; - DEBUG(4, ("source_env: getting var %s = %s\n", line, getenv(line))); - } - - DEBUG(4, ("source_env: returning successfully\n")); - return (True); -} - -#if 0 -/* Doesn't seem to be used anymore. JRA */ -/*************************************************************************** - Handle the source environment operation. -***************************************************************************/ - -static BOOL handle_source_env(const char *pszParmValue, char **ptr) -{ - pstring fname; - char *p = fname; - BOOL result; - char **lines; - - pstrcpy(fname, pszParmValue); - - standard_sub_basic(current_user_info.smb_name, fname,sizeof(fname)); - - string_set(ptr, pszParmValue); - - DEBUG(4, ("handle_source_env: checking env type\n")); - - /* - * Filename starting with '|' means popen and read from stdin. - */ - - if (*p == '|') - lines = file_lines_pload(p + 1, NULL); - else - lines = file_lines_load(fname, NULL); - - if (!lines) { - DEBUG(0, ("handle_source_env: Failed to open file %s, Error was %s\n", - fname, strerror(errno))); - return (False); - } - - result = source_env(lines); - file_lines_free(lines); - - return (result); -} -#endif - -/*************************************************************************** Handle the include operation. ***************************************************************************/ @@ -3725,15 +3630,6 @@ void lp_add_one_printer(char *name, char *comment) } /*************************************************************************** - Announce ourselves as a print server. -***************************************************************************/ - -void update_server_announce_as_printserver(void) -{ - default_server_announce |= SV_TYPE_PRINTQ_SERVER; -} - -/*************************************************************************** Have we loaded a services file yet? ***************************************************************************/ @@ -4102,6 +3998,12 @@ static void set_default_server_announce_type(void) default_server_announce |= SV_TYPE_SERVER; default_server_announce |= SV_TYPE_SERVER_UNIX; + /* note that the flag should be set only if we have a + printer service but nmbd doesn't actually load the + services so we can't tell --jerry */ + + default_server_announce |= SV_TYPE_PRINTQ_SERVER; + switch (lp_announce_as()) { case ANNOUNCE_AS_NT_SERVER: default_server_announce |= SV_TYPE_SERVER_NT; |