| Commit message (Collapse) | Author | Age | Files | Lines |
| |
|
|
|
|
| |
Matt Hazinski
|
|
|
|
| |
indentation on continuation lines. Prompted by GHPR#185
|
| |
|
| |
|
|
|
|
|
|
| |
providers get upset if C_Initialize is not matched with C_Finalize.
From Adithya Baglody via GHPR#234; ok markus
|
| |
|
|
|
|
|
|
|
|
|
| |
were not being dequoted correctly and 2) quoted space in the middle
of a string was being incorrectly split.
A unit test for these cases has already been committed
prompted by and based on GHPR#223 by Eero Häkkinen; ok markus@
|
|
|
|
| |
ok jsing@ tb@
|
|
|
|
| |
OK sthen
|
| |
|
| |
|
|
|
|
| |
other fixes. From Aaron Jensen with help from Anindya Mukherjee.
|
| |
|
|
|
|
|
|
|
|
|
|
|
| |
good limits based on what the server supports. Split the download and
upload buffer sizes to allow them to be chosen independently.
In practice (and assuming upgraded sftp/sftp-server at each end), this
increases the download buffer 32->64KiB and the upload buffer
32->255KiB.
Patches from Mike Frysinger; ok dtucker@
|
|
|
|
| |
the command-line options (e.g. -p/-P/-R); ok dtucker@
|
|
|
|
|
|
| |
diff from robert scheck
discussed with and tweaked by sthen
|
| |
|
|
|
|
| |
Fine deraadt@
|
|
|
|
| |
Reminded by inoguchi jsing
|
| |
|
|
|
|
|
|
|
|
|
|
|
| |
font, rather than with the monospace font appropriate for .Bd -literal.
This fixes a minibug reported by anton@.
Implemented by no longer relying on the typical browser default of
"pre { font-family: monospace }" but instead letting <pre> elements
inherit the font family from their parent, then adding an explicit CSS .Li
class only for those displays where the manual page author requested it
by using the -literal option on the .Bd macro.
|
|
|
|
|
| |
ptr++
ok claudio
|
|
|
|
|
|
|
|
|
|
| |
Currently, SSL_is_dtls exists in both libssl and apps.c,
and one in libssl is guarded by LIBRESSL_INTERNAL and not exposed yet.
This causes portable build broke with openssl(1) and optionstest.
To solve this temporarily, rename SSL_is_dtls by apps.h.
This temporary renaming will be removed when the SSL_is_dtls() is exposed.
ok jsing@
|
|
|
|
|
|
| |
currently a '*' next to a file's name indicates it is writable. With
this diff it now means it is read-only. Also make the active buffer
indicator more visible:'.'->'>'.
|
| |
|
|
|
|
|
|
|
|
| |
(define curdir(get-environment-variable CURDIR))
(insert curdir)
Should now print the value of the environment variable CURDIR's value,
or error if it is not set.
|
|
|
|
|
| |
Keep the same regex for mg function names. Though perhaps for
user-defined functions other characters could be ok....
|
| |
|
| |
|
| |
|
|
|
|
| |
kind of data being found.
|
|
|
|
|
| |
foundparen(). No intended functional change. regress tests ok and they
all use excline().
|
|
|
|
|
|
|
|
|
|
|
|
|
| |
Apply new option handling to openssl(1) x509.
To handle incremental order value, using newly added OPTION_ORDER.
I left the descriptions for -CAform, -inform, and -outform as it was,
for now. These description would be fixed.
And digest option handler could be consolidated to one between
some subcommands in the future.
ok and comments from tb@,
and "I'd move forward with your current plan." from jsing@
|
|
|
|
|
|
|
|
|
|
| |
To handle incremental order value, added new option type OPTION_ORDER.
openssl(1) x509 requires this option handling, since,
- -CA and -signkey require to set both filename and incremental 'num'.
- -dates requires to set two variables in a row, startdate and enddate.
and this couldn't be solved by OPTION_FLAG_ORD.
ok tb@ and "I'd move forward with your current plan." from jsing@
|
|
|
|
| |
OK sthen@
|
|
|
|
|
|
| |
changes.
OK sthen@
|
|
|
|
| |
consistantly.
|
| |
|
|
|
|
| |
because it is numerical.
|
|
|
|
|
|
|
|
|
|
| |
not able to properly unveil itself because you can request many files
as arguments. At the same time the sender is read-only and uses rpath
pledge() so the gain from unveil() is less of an issue.
On the receiver side all files land in one directory and this part still
uses unveil() to protect rsync to somehow walk out of the destination
directory.
From kristaps@
|
|
|
|
| |
From kristaps@
|
|
|
|
|
|
| |
Also the id is a strictly positve integer so this make sense.
Cleanup comments and a spacing while there.
From kristaps@
|
|
|
|
|
|
| |
impossible condition. The map argument is from a pread() call and can never
be MAP_FAILED.
From kristaps@
|
|
|
|
| |
From kristaps@
|
|
|
|
| |
From kristaps@
|
| |
|
|
|
|
|
|
|
| |
detection in between them though. Add limitation to characters
allowed in symbol names, equivalent to mg function names (A-Za-z-),
quite restrictive but can grow of course. If value is not quoted and
is not a variable, give an error.
|
|
|
|
|
|
| |
line. Next to look at "values" (quotes around values).
Current regress tests pass.
|
|
|
|
|
|
|
| |
initialise a pty, run the specified file of mg commands and then exit.
This is to facilitate mg fitting into the OpenBSD regress test
framework and be able to run via a cron job.
|