search for: error_message

Displaying 20 results from an estimated 218 matches for "error_message".

2010 Nov 30
1
Compiling ocfs2-tools-1.6.3 on slackware64-13.1
...o pass1.o pass1b.o pass2.o pass3.o pass4.o pass5.o problem.o refcount.o slot_recovery.o strings.o util.o xattr.o ../libocfs2/libocfs2.a ../libo2dlm/libo2dlm.a ../libo2cb/libo2cb.a -L../libocfs2 -locfs2 -L../libo2dlm -lo2dlm -L../libo2cb -lo2cb -L/lib64 -lcom_err /lib64/libcom_err.a(error_message.o): In function `setup_et_lock': error_message.c:(.text+0x1a3): undefined reference to `sem_init' /lib64/libcom_err.a(error_message.o): In function `fini_et_lock': error_message.c:(.text+0x1cc): undefined reference to `sem_destroy' /lib64/libcom_err.a(error_m...
2010 Feb 13
3
ocfs2 compile error in x86_64
...pass3.o pass4.o pass5.o problem.o refcount.o slot_recovery.o strings.o util.o xattr.o ../libocfs2/libocfs2.a ../libo2dlm/libo2dlm.a ../libo2cb/libo2cb.a -L../libocfs2 -locfs2 -L../libo2dlm -lo2dlm -L../libo2cb -lo2cb -lcom_err /usr/lib/gcc/x86_64-unknown-linux-gnu/4.4.1/../../../../lib/libcom_err.a(error_message.o): In function `fini_et_lock': /sources/e2fsprogs-1.41.9/build/lib/et/../../../lib/et/error_message.c:74: undefined reference to `sem_destroy' /usr/lib/gcc/x86_64-unknown-linux-gnu/4.4.1/../../../../lib/libcom_err.a(error_message.o): In function `setup_et_lock': /sources/e2fsprogs-1.41...
2010 Feb 13
3
ocfs2 compile error in x86_64
...pass3.o pass4.o pass5.o problem.o refcount.o slot_recovery.o strings.o util.o xattr.o ../libocfs2/libocfs2.a ../libo2dlm/libo2dlm.a ../libo2cb/libo2cb.a -L../libocfs2 -locfs2 -L../libo2dlm -lo2dlm -L../libo2cb -lo2cb -lcom_err /usr/lib/gcc/x86_64-unknown-linux-gnu/4.4.1/../../../../lib/libcom_err.a(error_message.o): In function `fini_et_lock': /sources/e2fsprogs-1.41.9/build/lib/et/../../../lib/et/error_message.c:74: undefined reference to `sem_destroy' /usr/lib/gcc/x86_64-unknown-linux-gnu/4.4.1/../../../../lib/libcom_err.a(error_message.o): In function `setup_et_lock': /sources/e2fsprogs-1.41...
2009 Mar 05
1
error_messages with form_tag
Hi Am facing a problem in accessing the error_messages. Actually am using form_tag is there any way with which i can access error_messages with form_tag. I don''t want to use form_for. Thanks in Advancve -- Posted via http://www.ruby-forum.com/. --~--~---------~--~----~------------~-------~--~----~ You received this message because you a...
2011 Nov 16
1
febootstrap-3.12 configure error on Fedora 16
...e febootstrap-3.12 on Fedora 16: > > $ ./configure > ............ > checking for aptitude... no > checking for apt-cache... no > checking for dpkg... no > checking for pacman... no > checking for gzopen in -lz... no > checking for mke2fs... /sbin/mke2fs > checking for error_message in -lcom_err... no > configure: error: in `/home/ato/febootstrap/febootstrap-3.12': > configure: error: com_err library not found (part of e2fsprogs) > See `config.log' for more details > > [ato at f16 febootstrap-3.12]$ gcc -std=gnu99 -o conftest -g -O2 conftest.c -lcom_er...
2011 Mar 13
1
Samba4 won't compile
...0.0alpha14 under Slackware 13-current - it failed. 206 warnings, 257 errors, and last famous words ---------------- cite on --------------- [2152/2374] Linking default/source4/heimdal_build/libroken-samba4.so [2153/2374] Linking default/source4/heimdal_build/libasn1-samba4.so /lib/libcom_err.a(error_message.o): In function `et_list_unlock': error_message.c:(.text+0x20): undefined reference to `sem_post' /lib/libcom_err.a(error_message.o): In function `fini_et_lock': error_message.c:(.text+0x3e): undefined reference to `sem_destroy' /lib/libcom_err.a(error_message.o): In function `setup...
2020 Feb 12
4
[nbdkit PATCH 0/3] Make ext2 a filter
...a = nxdata; + name = nbdkit_io_encode (&h->next); + if (!name) { + nbdkit_error ("nbdkit_io_encode: %m"); + return -1; + } + + err = ext2fs_open (name, fs_flags, 0, 0, nbdkit_io_manager, &h->fs); if (err != 0) { - nbdkit_error ("%s: open: %s", disk, error_message (err)); + nbdkit_error ("open: %s", error_message (err)); goto err0; } @@ -158,7 +181,7 @@ ext2_open (int readonly) err = ext2fs_namei (h->fs, EXT2_ROOT_INO, EXT2_ROOT_INO, &file[1], &h->ino); if (err != 0) { - nbdkit_error...
2010 Feb 11
2
[LLVMdev] LLVM memory usage?
...odule have been compiled or how to do this. I'd be grateful if anyone could tell me what I'm doing wrong or point me at docs or examples covering this topic? The gist of my code is: Module *load_module(char *bitcode_name) { MemoryBuffer *buffer = MemoryBuffer::getFile(bitcode_name, &error_message); ModuleProvider *mp = getBitcodeModuleProvider(buffer, getGlobalContext(), &error_message); if( first_time ) { InitializeNativeTarget(); builder = new EngineBuilder(mp); builder->setEngineKind(EngineKind::JIT); CodeGenOpt::Level opt_level = CodeGenOpt::Default;...
2020 Feb 12
0
[nbdkit PATCH 3/3] ext2: Add mode for letting client exportname choose file from image
...(asprintf (&absname, "/%s", fname) < 0) { + nbdkit_error ("asprintf: %m"); + return -1; + } + fname = absname; + } + err = ext2fs_open (name, fs_flags, 0, 0, nbdkit_io_manager, &h->fs); if (err != 0) { nbdkit_error ("open: %s", error_message (err)); goto err0; } - if (strcmp (file, "/") == 0) + if (strcmp (fname, "/") == 0) /* probably gonna fail, but we'll catch it later */ h->ino = EXT2_ROOT_INO; else { err = ext2fs_namei (h->fs, EXT2_ROOT_INO, EXT2_ROOT_INO, -...
2009 Feb 06
2
Using partials with form_for
...1>Enter Details for new Partner:</h1> <% form_for(@partner) do |f| %> <%= render :partial => ''form'', :locals => {:partner => f} %> <p> <%= f.submit "Create" %> </p> <% end %> *#_form.html.erb* <%= f.error_messages %> <p> <%= f.label :organisations_id, "Organisation Id" %><br /> <%= f.text_field :organisations_id %> </p> <p> <%= f.label :branches_id, "Branch Id" %><br /> <%= f.text_field :branches_id %> <...
2006 Jul 17
2
error_messages_for ?
Hi, I can''t list error_messages in my Form ??, and all the formfields are reset ...(I think my redirect :back clean everything, formfield and error_messages ...), only my flash[:notice] is ok.... I would like to use the "error_messages_for" tag to add a simple red * on my textfiled if a problem occurs ... thanks f...
2006 Jul 08
0
error_messages display in Internet Explorer (IE)
My form fields are inside a table; each field in its own <td> element. When there is a validation error, the corresponding field gets highligthed (with a box around the text box). This work perfectly on Mozilla, but in IE, the browser fils the entire TD column with a background color ie.. the highlights looks real messy. For example if the TD element size is 50 and the text box size is
2007 Apr 18
0
6 commits - libswfdec-gtk/swfdec_gtk_widget.c libswfdec/jpeg libswfdec/swfdec_image.c
...e_quantization_tables (JpegDecoder *dec); @@ -41,6 +39,26 @@ static void jpeg_decoder_verify_header ( static void jpeg_decoder_init_decoder (JpegDecoder *dec); +static void +jpeg_decoder_error(JpegDecoder *dec, char *fmt, ...) +{ + va_list varargs; + + if (dec->error) return; + + dec->error_message = malloc(250); + va_start (varargs, fmt); + vsnprintf(dec->error_message, 250 - 1, fmt, varargs); + dec->error_message[250 - 1] = 0; + va_end (varargs); + + dec->error = TRUE; +} + +#define jpeg_decoder_error(dec, ...) { \ + SWFDEC_ERROR("decoder error: "__VA_ARGS__); \ +...
2010 Feb 12
0
[LLVMdev] LLVM memory usage?
...o do this. > > I'd be grateful if anyone could tell me what I'm doing wrong or point me at > docs or examples covering this topic? The gist of my code is: > > Module *load_module(char *bitcode_name) { >   MemoryBuffer *buffer = MemoryBuffer::getFile(bitcode_name, > &error_message); >   ModuleProvider *mp = getBitcodeModuleProvider(buffer, getGlobalContext(), > &error_message); > >   if( first_time ) { >       InitializeNativeTarget(); >       builder = new EngineBuilder(mp); >       builder->setEngineKind(EngineKind::JIT); >       CodeGenOpt::...
2007 Oct 13
4
Chapter 9
...his issue for few days and I do not know how to get it fixed. The system always raises this error message : order is closed and here is my order.rb: class Order < ActiveRecord::Base include ActiveMerchant::Billing before_validation :set_status attr_protected :id, :customer_ip, :status, :error_message, :updated_at, :created_at attr_accessor :card_type, :card_number, :card_expiration_month, :card_expiration_year, :card_verification_value validates_size_of :order_items, :minimum => 1 validates_length_of :ship_to_first_name, :in => 2..255 validates_length_of :ship_to_last_name, :in =&...
2007 Jul 02
3
stupid Rails rendering
I dont'' understand why it''s not possible to have a conditional redirection in rendering respond_to do |format| format.js { render :update do |page| page.redirect_to posts_url if @located page.replace_html ''error_message'', "Error..." page << "$(''popup_error'').popup.show();" end } end raise an error... => Can only render or redirect once per action what shoudl do if I don"t want to render OR redirect respond_to do |format|...
2005 May 25
5
Patch to fix dynamic add/delete to zone functinality
...$host" ]; then - rm -f ${STATEDIR}/zones_$$ - startup_error "$host already in zone $zone" + found=Yes fi done done - - [ -z "$hosts" ] && hosts=$hostlist || hosts="$hosts $hostlist" + if [ -n "$found" ]; then + error_message "Warning: $host does appear to be in zone $zone already" + else + [ -z "$hosts" ] && hosts=$hostlist || hosts="$hosts $hostlist" + fi fi eval ${z}_hosts=\"$hosts\" @@ -7088,7 +7092,6 @@ fi fi done < ${STATEDIR}/chains -...
2000 Aug 03
0
help with afs
...i am trying to compile it with afs. It has not been successful. I have added all the afs libraries to the makefile. These are the errors i am still getting, can you please help me find away around this. Linking bin/smbd /afs/anl/i386_linux22/usr/afsws/lib/libafsrpc.a(error_msg.o): In function `error_message': /afs/transarc.com/project/fs/dev/afs/3.6/.stage22/@sys/obj/libafsrpc/../comerr/error_msg.c:105: multiple definition of `error_message' /krb5/lib/libcom_err.a(error_message.o)(.text+0x0): first defined here /usr/bin/ld: Warning: size of symbol `error_message' changed from 248 to 516 in...
2006 Jul 13
2
Kerberos Keytab Code Update in 3.0.23
First thing - I'd like to say a big "THANK YOU" to the developers. I just upgraded to samba-3.0.23 and I've noticed an alarming issue with respect to my configuration. I've been using the built-in keytab management and it looks like the updated code no longer creates the userPrincipal in Active Directory. Whether this is an issue for others or not, it would be nice to have
2011 Aug 02
2
removing instance variables in partials?
Hi, I read some articles about why partials should not have instance variables in them. But in "Ruby on Rails 3 Tutorial" the author starts with this partial: View: <%= form_for(@user) do |f| %> <%= render ''shared/error_messages'' %> Partial: <% if @users.errors.any? %> ... ... I thought removing the @user instance variable from the partial would have involved doing this: View: <%= form_for(@user) do |f| %> <%= render ''shared/error_messages'', :user => @user %> Pa...