Displaying 6 results from an estimated 6 matches for "skipit".
Did you mean:
skinit
2001 Nov 22
2
Missing panels in multipanel lme lattice/trellis
Dear R-supporters,
I have results of lme similar to those shown in Fig. 1.21, p.51 of
Pinheiro/Bates. However, In my data set, one of the panels is missing, leading
to an ugly frame shift of the following panels.
How can I replace one of the panels by an empty one to restore the raster?
Dieter Menne
---------------------------------------
Dr. Dieter Menne
Biomed Software
72074 T?bingen
Tel
2013 Sep 03
1
[PATCH v2] tftp-hpa: add error check for disk filled up
...d/tftpd.c | 12 ++++++++++--
2 files changed, 13 insertions(+), 3 deletions(-)
diff --git a/common/tftpsubs.c b/common/tftpsubs.c
index 8c999f6..172776c 100644
--- a/common/tftpsubs.c
+++ b/common/tftpsubs.c
@@ -215,7 +215,9 @@ int write_behind(FILE * file, int convert)
goto skipit; /* just skip over the putc */
/* else just fall through and allow it */
}
- putc(c, file);
+ if (putc(c, file) == EOF) {
+ return -1;
+ }
skipit:
prevchar = c;
}
diff --git a/tftpd/tftpd.c b/tftpd/tftpd.c
index 1873e70..c2adbda 100644
--...
2004 Dec 03
2
INITRAMFS: allow no trailer
...init/initramfs.c~allow-no-trailer init/initramfs.c
--- gr_work/init/initramfs.c~allow-no-trailer 2004-12-03 16:54:02.778579302 -0600
+++ gr_work-miltonm/init/initramfs.c 2004-12-03 16:54:02.789577561 -0600
@@ -241,10 +241,9 @@ static __initdata int wfd;
static int __init do_name(void)
{
state = SkipIt;
- next_state = Start;
+ next_state = Reset;
if (strcmp(collected, "TRAILER!!!") == 0) {
free_hash();
- next_state = Reset;
return 0;
}
if (dry_run)
@@ -295,7 +294,7 @@ static int __init do_symlink(void)
sys_symlink(collected + N_ALIGN(name_len), collected);
sys_lchown(co...
2013 Aug 22
2
[PATCH] tftp-hpa: add error check for disk filled up
...;) { /* if prev char was cr */
if (c == '\n') /* if have cr,lf then just */
- fseek(file, -1, 1); /* smash lf on top of the cr */
+ count = count - 1;
else if (c == '\0') /* if have cr,nul then */
goto skipit; /* just skip over the putc */
/* else just fall through and allow it */
}
- putc(c, file);
+ buf[count] = c;
+ count ++;
skipit:
prevchar = c;
}
- return count;
+ return write(fileno(file), buf, count);
}
/* When an error...
2006 Mar 21
2
[PATCH] initramfs: CPIO unpacking fix
...n(collected, uid, gid);
@@ -291,6 +293,7 @@ static int __init do_copy(void)
static int __init do_symlink(void)
{
collected[N_ALIGN(name_len) + body_len] = '\0';
+ sys_unlink(collected);
sys_symlink(collected + N_ALIGN(name_len), collected);
sys_lchown(collected, uid, gid);
state = SkipIt;
2006 Feb 21
1
[PATCH] initramfs: multiple CPIO unpacking fix
...n(collected, uid, gid);
@@ -291,6 +293,7 @@ static int __init do_copy(void)
static int __init do_symlink(void)
{
collected[N_ALIGN(name_len) + body_len] = '\0';
+ sys_unlink(collected);
sys_symlink(collected + N_ALIGN(name_len), collected);
sys_lchown(collected, uid, gid);
state = SkipIt;