Displaying 6 results from an estimated 6 matches for "err_".
Did you mean:
err
2009 Aug 08
0
[PATCH for SYSLINUX 4] pxelinux: remove obsolete err_* messages
Remove no longer used messages err_nopxe, err_pxefailed, err_udpinit
and err_damage.
Signed-off-by: Sebastian Herbszt <herbszt at gmx.de>
diff --git a/core/pxelinux.asm b/core/pxelinux.asm
index 34121e5..3cf22f4 100644
--- a/core/pxelinux.asm
+++ b/core/pxelinux.asm
@@ -654,11 +654,7 @@ copyright_str db ' Copyright (C)...
2016 Apr 23
0
RFC: [Patch] libpuload: use previous TFTP OK status definition
libupload: Use previous TFTP OK status definition
FTBFS: com32/hdt/hdt-dump.c:227:39: error: ?TFTP_OK? undeclared
(first use in this function)
Signed-off-by: Gene Cumm <gene.cumm at gmail.com>
Should we trim "ERR_" off the definition or change all of the places
this macro is used? Trimming means we have two possible spots with
incongruent definitions (bit order difference). I'm leaning towards
changing where it's used.
diff --git a/com32/libupload/tftp.h b/com32/libupload/tftp.h
index 209d97...
2023 Jun 08
0
The flacdiff and flactimer utils
...OST_SYNC
get error 0:FLAC__STREAM_DECODER_ERROR_STATUS_LOST_SYNC
get error 0:FLAC__STREAM_DECODER_ERROR_STATUS_LOST_SYNC
get error 0:FLAC__STREAM_DECODER_ERROR_STATUS_LOST_SYNC
get error 0:FLAC__STREAM_DECODER_ERROR_STATUS_LOST_SYNC
get error 0:FLAC__STREAM_DECODER_ERROR_STATUS_LOST_SYNC
ERROR: got err_ in decoder1, state=FLAC__STREAM_DECODER_READ_FRAME
At first I assumed some change broke this util, but even going all the
way back to the FLAC 1.2.0 release, the behaviour is the same. Has
anybody on this list ever used flacdiff?
Kind regards, Martijn van Beurden
2016 Jan 08
24
[Bug 2522] New: Key parser should reflect errors from OpenSSL
...of private key
parsing.
When openSSH can not derive the key type it passes the whole blob to
OpenSSL function and waits if it can parse it.
PEM_read_bio_PrivateKey() # called from sshkey.c @ 3791
Only return value from this function is NULL on failure. The reason can
be obtained using ERR_ functions from OpenSSL
ERR_get_error(); # actual error code
ERR_print_errors_fp(stderr); # prints verbose info
Possible reasons for failure of the above mentioned function are
described in openssl/pem.h [4]. Basically, some of the reasons are
obviously not related to wrong...
2013 Dec 11
2
libc_nonshared.a missing on 10.0-RC1
Hi all!
Yesterday I upgraded to FreeBSD 10.0-RC1 through freebsd-update. Everything
seemed fine until I decided to upgrade my ports today.
There was a new version of pkg which built fine up until the linking:
===> Building for pkg-1.2.3
--- all ---
===> libpkg (all)
--- objwarn ---
--- libpkg.so.1 ---
--- objwarn ---
Warning: Object directory not changed from original
2013 Oct 26
2
[PATCH] 1. changes for vdiskadm on illumos based platform
...if (devread(sector, 0, psize, buf) != 0)
return (0);
}
}
@@ -399,7 +414,7 @@ zio_read(blkptr_t *bp, void *buf, char *
stack += psize;
}
- if (zio_read_data(bp, buf, stack)) {
+ if (zio_read_data(bp, buf, stack) != 0) {
grub_printf("zio_read_data failed\n");
return (ERR_FSYS_CORRUPT);
}
@@ -409,8 +424,13 @@ zio_read(blkptr_t *bp, void *buf, char *
return (ERR_FSYS_CORRUPT);
}
- if (comp != ZIO_COMPRESS_OFF)
- decomp_table[comp].decomp_func(buf, retbuf, psize, lsize);
+ if (comp != ZIO_COMPRESS_OFF) {
+ if (decomp_table[comp].decomp_func(buf, retbuf, psiz...