search for: optlist

Displaying 9 results from an estimated 9 matches for "optlist".

Did you mean: opt_list
2001 Feb 20
1
man pages screwed
Hi all. I just got openssh 2.5.1p1 and when I installed it, it's man pages doesn't seem to be formatted right. I'm on Solaris 8. Here is how it looks: man ssh Reformatting page. Please Wait... done (Secure Shell) is a program for logging into a remote machine and for executing commands on a remote machine. It is intended to replace rlogin and rsh, and provide secure encrypted
2001 Feb 07
2
Patch for unformatted manpages
...AFS support: $AFS_MSG" diff -urN openssh_cvs/mdoc2man.pl openssh_work/mdoc2man.pl --- openssh_cvs/mdoc2man.pl Wed Dec 31 18:00:00 1969 +++ openssh_work/mdoc2man.pl Tue Feb 6 23:17:10 2001 @@ -0,0 +1,329 @@ +#!/usr/local/bin/perl + +use strict; + +my ($name, $date, $id); +my ($line); +my ($optlist, $nospace, $enum, $synopsis); + + +$optlist = 0; ### 1 = bullet, 2 = enum, 3 = tag +$nospace = 0; +$synopsis = 0; + +while ($line = <STDIN>) +{ + if ($line !~ /^\./) + { + print $line; + next; + } + + $line =~ s/^\.//; + + next + if ($line =~ m/\\"/); + + $line = ParseMacro($line); +...
2019 Jan 25
0
[klibc:update-dash] expand: 'nolog' and 'debug' options cause "$-" to wreak havoc
...ed, 1 insertion(+), 1 deletion(-) diff --git a/usr/dash/expand.c b/usr/dash/expand.c index 153f6b7a..e86bd29d 100644 --- a/usr/dash/expand.c +++ b/usr/dash/expand.c @@ -927,7 +927,7 @@ numvar: case '-': p = makestrspace(NOPTS, expdest); for (i = NOPTS - 1; i >= 0; i--) { - if (optlist[i]) { + if (optlist[i] && optletters[i]) { USTPUTC(optletters[i], p); len++; }
2020 Mar 28
0
[klibc:update-dash] dash: expand: 'nolog' and 'debug' options cause "$-" to wreak havoc
...ed, 1 insertion(+), 1 deletion(-) diff --git a/usr/dash/expand.c b/usr/dash/expand.c index 153f6b7a..e86bd29d 100644 --- a/usr/dash/expand.c +++ b/usr/dash/expand.c @@ -927,7 +927,7 @@ numvar: case '-': p = makestrspace(NOPTS, expdest); for (i = NOPTS - 1; i >= 0; i--) { - if (optlist[i]) { + if (optlist[i] && optletters[i]) { USTPUTC(optletters[i], p); len++; }
2012 Oct 19
2
setting option in function
is it possible to set an option inside a function ((I want to set na.action = na.fail) and have the previous state restored if there is an error so that the function doesn't change the option behind the user's back? Sorry if this has been answered before, but this subject is hard to Google. -- Charles Geyer Professor, School of Statistics University of Minnesota charlie at stat.umn.edu
2020 Aug 18
0
[libnbd PATCH v3 2/2] api: Add nbd_aio_opt_list
...ibnbd/libnbd_220_opt_list_test.go @@ -24,6 +24,16 @@ import ( "testing" ) +var exports []string + +func listf(name string, desc string) int { + if desc != "" { + panic("expected empty description") + } + exports = append(exports, name) + return 0 +} + func Test220OptList(t *testing.T) { /* Require new-enough nbdkit */ srcdir := os.Getenv("srcdir") @@ -54,60 +64,46 @@ func Test220OptList(t *testing.T) { } /* First pass: server fails NBD_OPT_LIST */ - /* XXX We can't tell the difference */ - err = h.OptList() - if err != nil { - t.Fatalf(&quot...
2020 Aug 18
3
[libnbd PATCH v3 0/2] Implementing NBD_OPT_LIST
This is a subset of my v2 posting, but limited to just the NBD_OPT_LIST handling. The biggest change since v2 is the addition of added unit testing in all four language bindings (C, python, ocaml, golang). The tests require nbdkit built from git on PATH, and may not be entirely idiomatic, but I at least validated that they catch issues (for example, adding an exit statement near the end of the
2011 Jul 03
0
[LLVMdev] where define the TARGET_80387 in md file ?
...umrec" is 745 # Sort it and output it END { sort(record,numrec) for (i = 1; i <= numrec; i++) {//this loop execute only 7, although numrec=745 print record[i] } } I try to explicitly changeto : for (i = 1; i <= 745; i++) but there occurs redefinition error, I think optlist files input is not compatible. why I got this error, is it because of my stupid error? > Message: 12 > Date: Fri, 01 Jul 2011 11:15:50 +0200 > From: Duncan Sands <baldrick at free.fr> > Subject: Re: [LLVMdev] where define the TARGET_80387 in md file ? > To: llvmdev at cs.uiuc...
2016 Sep 26
6
Possible formatting bug in ssh-agent.1 man page
Version info: OpenSSH_7.3p1, OpenSSL 1.0.2i 22 Sep 2016, Arch linux The ssh-agent.1 man page seems to have an indentation oddity, at least, as formatted with recent Arch linux manpage toolset. Here's what appears in the formatted output just after the description of the the "-t" option: ---------- Begin formatted output ------------------------------------- -t life