search for: link_r

Displaying 6 results from an estimated 6 matches for "link_r".

Did you mean: link_nr
2011 Apr 27
2
2.0.12 Coredump under Solaris 10
...mmand here and show the output. lot of lines :-) ============================ (gdb) bt full #0 0xfeb559f8 in strcmp () from /lib/libc.so.1 No symbol table info available. #1 0xfee73e7a in settings_find_key_nth (ctx=0x809bec0, key=0x807ab38 "plugin//imap", n=0x80477f0, def_r=0x80477f4, link_r=0x80477f8) at settings-parser.c:699 parent_n = 1 parent_def = (const struct setting_define *) 0x0 parent_link = (struct setting_link *) 0x809bf40 def = (const struct setting_define *) 0x7ffffffb link = (struct setting_link *) 0x807ab48 parent_key...
2011 Mar 25
2
Regression in settings-parser.c (dovecot 2.0.11)
...We've tested simple fix: if (parent_def==NULL) return FALSE; and everything was working again. Michal Backtrace of the crash: Program received signal SIGSEGV, Segmentation fault. settings_find_key_nth (ctx=0x99e4050, key=0x99c4330 "plugin//etc", n=0xbff9bdac, def_r=0xbff9bda8, link_r=0xbff9bda4) at settings-parser.c:696 696 if (parent_def->type != SET_STRLIST) (gdb) p parent_def $1 = (const struct setting_define *) 0x0 (gdb) bt #0 settings_find_key_nth (ctx=0x99e4050, key=0x99c4330 "plugin//etc", n=0xbff9bdac, def_r=0xbff9bda8, link_r=0xbff9bda4) at setting...
2006 Oct 18
0
Versions and gem ?
Hi all, I am using the Textile part of RedCloth for the Manta version of LogiLogi.org, an OS project of mine. Now I was looking at changing the LINK_RE so it allows links without spaces inbetween them like ("te":index.html;"xt":index.txt). Now that''s pretty easy, but still risky because a change in the bracket-order of the LINK_RE in a newer version would wreck it, so I looked at the svn code to see if it''s...
2011 Apr 27
2
2.0.12 Coredump under Solaris 10
hi, I've installed a testversion from 2.0.12 and getting coredumps after login via IMAP/POP3. I don't know, if it is a simple config error or something else. ====== dovecot: [ID 583609 local7.error] master: Error: service(imap): child 29333 killed with signal 11 (core dumped) [ID 583609 local7.error] master: Error: service(imap): child 29335 killed with signal 11 (core dumped) ======
2011 Jun 28
0
[PATCH] cpio: cleanup O_BINARY usage.
...--- a/usr/utils/cpio.c +++ b/usr/utils/cpio.c @@ -31,10 +31,6 @@ #include <fnmatch.h> #endif -#ifndef O_BINARY -# define O_BINARY 0 -#endif - # ifndef DIRECTORY_SEPARATOR # define DIRECTORY_SEPARATOR '/' # endif @@ -576,8 +572,7 @@ static void create_final_defers(void) if (link_res == 0) { continue; } - out_file_des = open(d->header.c_name, - O_CREAT | O_WRONLY | O_BINARY, 0600); + out_file_des = open(d->header.c_name, O_CREAT | O_WRONLY, 0600); if (out_file_des < 0) { fprintf(stderr, "%s: open %s: %s\n", progname, d->header...
2007 Aug 24
2
[git patch] klibc bzero, mount fixes + random stuff
..._inode_file(unsigned long node_num, unsigned long major_num, numbers is found, try and create another link to it using link_to_name, and return 0 for success and -1 for failure. */ -int +static int link_to_maj_min_ino(char *file_name, int st_dev_maj, int st_dev_min, int st_ino) { int link_res; @@ -457,7 +444,7 @@ link_to_maj_min_ino(char *file_name, int st_dev_maj, int st_dev_min, int st_ino) static void copyin_regular_file(struct new_cpio_header *file_hdr, int in_file_des); -void warn_junk_bytes(long bytes_skipped) +static void warn_junk_bytes(long bytes_skipped) { fprintf...