Displaying 8 results from an estimated 8 matches for "safe_str".
Did you mean:
name_str
2008 Jun 03
2
unsafe_string_function_usage_here when linking smbd
I'm trying to build 3.0.30 on Alpha/Tru64-4.0G. The configure step
works,
but make fails when it tries to link smbd:
Compiling popt/popt.c
Compiling popt/poptconfig.c
Compiling popt/popthelp.c
Compiling popt/poptparse.c
Linking bin/smbd
ld:
Unresolved:
__unsafe_string_function_usage_here_size_t__
gmake: *** [bin/smbd] Error 1
This Should Never Happen :) -- that looks like a message for the
developers.
How can I track down the cause of this and fix it?
Here are some details: I'm using the samba-3.0.30.tar.gz source
distribution
downloaded from samba....
2010 May 17
6
Should an blank string be html_safe?
Just trying to implement a simple helper over the past few days had me
really confused.
messages = ''''
messages << content_tag(:p, ''dave'')
#=> <p>dave<\p%;gt;
Eventually I realised the original empty string was not html_safe
message = ''''.html_safe
message << content_tag(:p, ''dave'')
#=>
2003 Oct 03
1
Cannot compile 3.0.0 release
...akefile" to remove the "-g"
from the CFLAGS
and then ran make which ended with the output below;
Compiling smbd/server.c
Compiling popt/findme.c
Compiling popt/popt.c
Compiling popt/poptconfig.c
Compiling popt/popthelp.c
Compiling popt/poptparse.c
Linking bin/smbd
ld:
Unresolved:
__unsafe_string_function_usage_here__
*** Exit 1
Stop.
My C program skills are almost non-existent, so I had to ask round a few
friends (who are also not strong C programmers, but are better than me)
and found that after the "configure" step the resulting "Makefile" does not
contain any ref...
2003 Oct 22
1
more solaris/samba 3 build problems
...h:6: warning: #warning "This header is
obsolete, use ap_compat.h instead"
In file included from
/usr/local/src/samba/samba-3.0.0/source/include/includes.h:902,
from
/usr/local/src/samba/samba-3.0.0/source/dynconfig.c:21:
/usr/local/src/samba/samba-3.0.0/source/include/safe_string.h:124:
warning: `pstrcat' redefined
/usr/local/include/ap_compat.h:300: warning: this is the location of the
previous definition
Compiling /usr/local/src/samba/samba-3.0.0/source/smbd/build_options.c
In file included from
/usr/local/src/samba/samba-3.0.0/source/include/includes.h:337,...
2003 Jun 19
1
Winbind and Organization Unit
I'm using Samba 2.2.8a with winbind on a Redhat System
(kernel 2.4.20 + acl) within a W2K Domain compiled
with the good options (I hope)
Winbind can authentify users when the user is a Global
User but not when he's in an Organization Unit.
I need that winbind is able to authentify OU's users.
Normally I've access only to my OU so how to tell to
winbind to check only in a
2013 Apr 02
0
flac 1.3.0pre3 pre-release
...8ffa5b6 100644
--- a/src/monkeys_audio_utilities/flac_mac/main.c
+++ b/src/monkeys_audio_utilities/flac_mac/main.c
@@ -133,7 +133,7 @@ int main(int argc, char *argv[])
/* for the full 'from' and 'to' paths for the renamer process */
p = strrchr(argv[from_arg],'\\');
safe_strncat(from, p? p+1 : argv[from_arg], sizeof(from));
- safe_strncpy(to, from, sizeof(to), sizeof(to));
+ safe_strncpy(to, from, sizeof(to));
cptr = strrchr(from,'.');
if(cptr == NULL)
-------------- next part --------------
diff --git a/src/utils/flactimer/main.cpp b/src/utils/flacti...
2003 Nov 08
1
Samba 3 doesn't compile - the saga continues...
...pile under Slackware. Tridge, do you need a copy of Slackware to
test against?
Here is the latest set of warnings and errors preventing Samba 3 from compiling
on Slackware 9.1...
Compiling smbd/server.c
In file included from include/includes.h:902,
from smbd/server.c:23:
include/safe_string.h:124:1: warning: "pstrcat" redefined
In file included from include/includes.h:337,
from smbd/server.c:23:
/usr/include/ap_compat.h:300:1: warning: this is the location of the previous
definition
Linking bin/smbd
/usr/lib/libkrb5.a(cc_file.o)(.text+0x1d90): In function...
2013 Apr 01
2
flac 1.3.0pre3 pre-release
Janne Hyv?rinen wrote:
> Zip with random patches:
>
> flac_mac: fixes some missing parameters from safe string handling
> changes in flac_mac's main.c
> flac_mac_project: adds flac's include dir for the project so new
> functions can be found
> progress_display: flac testing progress display used old functions that
> didn't get utf-8 decoding
>