[Bug 232313] GCE image size is now > 30 GB, above free quota

2019-01-13 Thread bugzilla-noreply
https://bugs.freebsd.org/bugzilla/show_bug.cgi?id=232313

--- Comment #25 from Kirk McKusick  ---
(In reply to Conrad Meyer from comment #24)
Thanks, doing the 'truncate -s 30g myvm.img' did the trick and I was able to
then successfully growfs the filesystem. I did cause a panic because of having
active snapshots, but that is a different bug that I know how to fix (and will
do so shortly). So, bottom line is that I agree that it is entirely reasonable
to make the images much smaller.

-- 
You are receiving this mail because:
You are the assignee for the bug.
___
freebsd-bugs@freebsd.org mailing list
https://lists.freebsd.org/mailman/listinfo/freebsd-bugs
To unsubscribe, send any mail to "freebsd-bugs-unsubscr...@freebsd.org"


[Bug 233735] Possible build race: genoffset.o /usr/src/sys/sys/types.h: error: machine/endian.h: No such file or directory

2019-01-13 Thread bugzilla-noreply
https://bugs.freebsd.org/bugzilla/show_bug.cgi?id=233735

--- Comment #4 from Li-Wen Hsu  ---
https://ci.freebsd.org/job/FreeBSD-head-amd64-build/11587/console

-- 
You are receiving this mail because:
You are the assignee for the bug.
___
freebsd-bugs@freebsd.org mailing list
https://lists.freebsd.org/mailman/listinfo/freebsd-bugs
To unsubscribe, send any mail to "freebsd-bugs-unsubscr...@freebsd.org"


[Bug 233735] Possible build race: genoffset.o /usr/src/sys/sys/types.h: error: machine/endian.h: No such file or directory

2019-01-13 Thread bugzilla-noreply
https://bugs.freebsd.org/bugzilla/show_bug.cgi?id=233735

--- Comment #3 from Li-Wen Hsu  ---
https://ci.freebsd.org/job/FreeBSD-head-sparc64-build/11283/console

-- 
You are receiving this mail because:
You are the assignee for the bug.
___
freebsd-bugs@freebsd.org mailing list
https://lists.freebsd.org/mailman/listinfo/freebsd-bugs
To unsubscribe, send any mail to "freebsd-bugs-unsubscr...@freebsd.org"


[Bug 234691] 'make buildworld' of 12.0-RELEASE sources fails, com_err.h not found

2019-01-13 Thread bugzilla-noreply
https://bugs.freebsd.org/bugzilla/show_bug.cgi?id=234691

--- Comment #1 from commit-h...@freebsd.org ---
A commit references this bug:

Author: nyan
Date: Mon Jan 14 06:34:58 UTC 2019
New revision: 343011
URL: https://svnweb.freebsd.org/changeset/base/343011

Log:
  Use ${SRCTOP}/contrib/com_err/com_err.h instead of the installed com_err.h.
  This fixes build when com_err.h is not installed.

  PR:   234691
  MFC after:1 week

Changes:
  head/kerberos5/lib/libasn1/Makefile
  head/kerberos5/lib/libgssapi_krb5/Makefile
  head/kerberos5/lib/libhdb/Makefile
  head/kerberos5/lib/libheimntlm/Makefile
  head/kerberos5/lib/libhx509/Makefile
  head/kerberos5/lib/libkadm5clnt/Makefile
  head/kerberos5/lib/libkadm5srv/Makefile
  head/kerberos5/lib/libkdc/Makefile
  head/kerberos5/lib/libkrb5/Makefile
  head/kerberos5/lib/libwind/Makefile
  head/kerberos5/libexec/digest-service/Makefile
  head/kerberos5/libexec/hprop/Makefile
  head/kerberos5/libexec/hpropd/Makefile
  head/kerberos5/libexec/kadmind/Makefile
  head/kerberos5/libexec/kdc/Makefile
  head/kerberos5/usr.bin/hxtool/Makefile
  head/kerberos5/usr.bin/kadmin/Makefile
  head/kerberos5/usr.bin/string2key/Makefile
  head/kerberos5/usr.bin/verify_krb5_conf/Makefile
  head/kerberos5/usr.sbin/kstash/Makefile

-- 
You are receiving this mail because:
You are the assignee for the bug.
___
freebsd-bugs@freebsd.org mailing list
https://lists.freebsd.org/mailman/listinfo/freebsd-bugs
To unsubscribe, send any mail to "freebsd-bugs-unsubscr...@freebsd.org"


[Bug 234885] cmp(1) Capsicum error if stdin closed

2019-01-13 Thread bugzilla-noreply
https://bugs.freebsd.org/bugzilla/show_bug.cgi?id=234885

Mark Johnston  changed:

   What|Removed |Added

 Attachment #201110|0   |1
is obsolete||

--- Comment #2 from Mark Johnston  ---
Created attachment 201112
  --> https://bugs.freebsd.org/bugzilla/attachment.cgi?id=201112=edit
patch

Here's a somewhat nicer patch that converts cmp(1) to use caph_limit_stdio()
instead, which ignores EBADF.

-- 
You are receiving this mail because:
You are the assignee for the bug.
___
freebsd-bugs@freebsd.org mailing list
https://lists.freebsd.org/mailman/listinfo/freebsd-bugs
To unsubscribe, send any mail to "freebsd-bugs-unsubscr...@freebsd.org"


[Bug 234885] cmp(1) Capsicum error if stdin closed

2019-01-13 Thread bugzilla-noreply
https://bugs.freebsd.org/bugzilla/show_bug.cgi?id=234885

Mark Johnston  changed:

   What|Removed |Added

 CC||ma...@freebsd.org

--- Comment #1 from Mark Johnston  ---
Created attachment 201110
  --> https://bugs.freebsd.org/bugzilla/attachment.cgi?id=201110=edit
patch

The attached patch should fix this.  We have the same problem if stdout or
stderr
is closed, since cmp(1) calls caph_limit_{stdout,stderr}().  Also, if all three
streams are closed, the caph_limit_stderr() call will fail because
STDERR_FILENO isn't a valid fd.

These problems aren't specific to cmp(1), they'll affect anything using these
helpers.  I think the fcntl() calls in the patch should be lifted into the
corresponding Capsicum helpers.

-- 
You are receiving this mail because:
You are the assignee for the bug.
___
freebsd-bugs@freebsd.org mailing list
https://lists.freebsd.org/mailman/listinfo/freebsd-bugs
To unsubscribe, send any mail to "freebsd-bugs-unsubscr...@freebsd.org"


[Bug 230725] [patch] kerberos5 files missing in tools/build/mk/OptionalObsoleteFiles.inc

2019-01-13 Thread bugzilla-noreply
https://bugs.freebsd.org/bugzilla/show_bug.cgi?id=230725

Oleksandr Tymoshenko  changed:

   What|Removed |Added

 CC||go...@freebsd.org
 Status|New |Closed
   Assignee|b...@freebsd.org|go...@freebsd.org
 Resolution|--- |FIXED

-- 
You are receiving this mail because:
You are the assignee for the bug.
___
freebsd-bugs@freebsd.org mailing list
https://lists.freebsd.org/mailman/listinfo/freebsd-bugs
To unsubscribe, send any mail to "freebsd-bugs-unsubscr...@freebsd.org"


[Bug 230725] [patch] kerberos5 files missing in tools/build/mk/OptionalObsoleteFiles.inc

2019-01-13 Thread bugzilla-noreply
https://bugs.freebsd.org/bugzilla/show_bug.cgi?id=230725

--- Comment #3 from commit-h...@freebsd.org ---
A commit references this bug:

Author: gonzo
Date: Mon Jan 14 03:13:31 UTC 2019
New revision: 343009
URL: https://svnweb.freebsd.org/changeset/base/343009

Log:
  Add four kerberos CLI utilities to OptionalObsoleteFiles.inc

  Add asn1_compile, make-roken, kcc, and slc to the OptionalObsoleteFiles.inc
  so they would be removed during delete-old stage if the new world is built
  without Kerberos support.

  PR:   230725
  Submitted by: Dmitry Wagin 
  MFC after:1 week

Changes:
  head/tools/build/mk/OptionalObsoleteFiles.inc

-- 
You are receiving this mail because:
You are the assignee for the bug.
___
freebsd-bugs@freebsd.org mailing list
https://lists.freebsd.org/mailman/listinfo/freebsd-bugs
To unsubscribe, send any mail to "freebsd-bugs-unsubscr...@freebsd.org"


[Bug 204916] Add Quirks for Dell ChromeBook: Allows boot/run

2019-01-13 Thread bugzilla-noreply
https://bugs.freebsd.org/bugzilla/show_bug.cgi?id=204916

Oleksandr Tymoshenko  changed:

   What|Removed |Added

 CC||go...@freebsd.org
 Status|New |Closed
 Resolution|--- |FIXED

--- Comment #2 from Oleksandr Tymoshenko  ---
biosmem part committed, the keyboard patch no longer required after base
r307468

-- 
You are receiving this mail because:
You are the assignee for the bug.
___
freebsd-bugs@freebsd.org mailing list
https://lists.freebsd.org/mailman/listinfo/freebsd-bugs
To unsubscribe, send any mail to "freebsd-bugs-unsubscr...@freebsd.org"


[Bug 204916] Add Quirks for Dell ChromeBook: Allows boot/run

2019-01-13 Thread bugzilla-noreply
https://bugs.freebsd.org/bugzilla/show_bug.cgi?id=204916

--- Comment #1 from commit-h...@freebsd.org ---
A commit references this bug:

Author: gonzo
Date: Mon Jan 14 01:30:48 UTC 2019
New revision: 343008
URL: https://svnweb.freebsd.org/changeset/base/343008

Log:
  Add Dell Chromebook to the list of devices with E820 extmem quirk enabled

  Just like for Acer C270 chromebook the E820 extmem workaround is required for
  FreeBSD to boot on Dell chromebook.

  PR:   204916
  Submitted by: Keith White 
  MFC after:1 week

Changes:
  head/stand/i386/libi386/biosmem.c

-- 
You are receiving this mail because:
You are the assignee for the bug.
___
freebsd-bugs@freebsd.org mailing list
https://lists.freebsd.org/mailman/listinfo/freebsd-bugs
To unsubscribe, send any mail to "freebsd-bugs-unsubscr...@freebsd.org"


[Bug 232313] GCE image size is now > 30 GB, above free quota

2019-01-13 Thread bugzilla-noreply
https://bugs.freebsd.org/bugzilla/show_bug.cgi?id=232313

--- Comment #24 from Conrad Meyer  ---
(In reply to Kirk McKusick from comment #23)
For vmrun.sh, you can probably just use 'truncate -s 30g myvm.img' to grow the
size of the image used by Bhyve.

-- 
You are receiving this mail because:
You are the assignee for the bug.
___
freebsd-bugs@freebsd.org mailing list
https://lists.freebsd.org/mailman/listinfo/freebsd-bugs
To unsubscribe, send any mail to "freebsd-bugs-unsubscr...@freebsd.org"


[Bug 232313] GCE image size is now > 30 GB, above free quota

2019-01-13 Thread bugzilla-noreply
https://bugs.freebsd.org/bugzilla/show_bug.cgi?id=232313

--- Comment #23 from Kirk McKusick  ---
(In reply to Mateusz Kwiatkowski from comment #22)
Trying to reproduce your test.

The problem that I have is that I cannot increase the size of the virtual disk
in my virtual machine.

What is the program `vm' that you are using?
I use `/usr/share/examples/bhyve/vmrun.sh' and it does not have an option to
set the disk size in the started up virtual machine.

-- 
You are receiving this mail because:
You are the assignee for the bug.
___
freebsd-bugs@freebsd.org mailing list
https://lists.freebsd.org/mailman/listinfo/freebsd-bugs
To unsubscribe, send any mail to "freebsd-bugs-unsubscr...@freebsd.org"


[Bug 234671] clang faults while compiling new GlusterFS source code

2019-01-13 Thread bugzilla-noreply
https://bugs.freebsd.org/bugzilla/show_bug.cgi?id=234671

Dimitry Andric  changed:

   What|Removed |Added

 Status|New |Open
   Assignee|b...@freebsd.org|d...@freebsd.org
 CC||d...@freebsd.org

--- Comment #3 from Dimitry Andric  ---
I can reproduce this, and it looks almost the same as
.

Mostly minimized:

/* clang -cc1 -triple x86_64-- -emit-obj glfs-min.c */

#define STR(str) #str

#define GFAPI_SYMVER_PRIVATE_DEFAULT(fn, ver) \
asm(".symver priv_"STR(fn)", "STR(fn)"@@GFAPI_PRIVATE_"STR(ver))

GFAPI_SYMVER_PRIVATE_DEFAULT(foo, 1.0);

Minimized even more:

/* clang -cc1 -triple x86_64-- -emit-obj glfs-min.c */
asm(".symver a,b@@c");

The upstream bug report is sitting there since 2018-10-13 without any activity,
I'll see if I can poke somebody.

-- 
You are receiving this mail because:
You are the assignee for the bug.
___
freebsd-bugs@freebsd.org mailing list
https://lists.freebsd.org/mailman/listinfo/freebsd-bugs
To unsubscribe, send any mail to "freebsd-bugs-unsubscr...@freebsd.org"


[Bug 234622] [libc] getgrent() issue with large NIS groups

2019-01-13 Thread bugzilla-noreply
https://bugs.freebsd.org/bugzilla/show_bug.cgi?id=234622

Jilles Tjoelker  changed:

   What|Removed |Added

 CC||jil...@freebsd.org
 Status|New |Open

--- Comment #1 from Jilles Tjoelker  ---
This patch looks conceptually correct: if getgrent_r() returns ERANGE, it must
not advance the iterator. Apparently it is acceptable to call yp_first() or
yp_next() with the same key multiple times.

The code in FreeBSD head advances the iterator when ERANGE is returned, so the
excessively long group is discarded (but following groups will use a larger
buffer).

Potential issue in the patch: reading *errnop in if (*errnop == ERANGE) {
without ensuring it is meaningful by checking rv == NS_RETURN may not be
correct.

-- 
You are receiving this mail because:
You are the assignee for the bug.
___
freebsd-bugs@freebsd.org mailing list
https://lists.freebsd.org/mailman/listinfo/freebsd-bugs
To unsubscribe, send any mail to "freebsd-bugs-unsubscr...@freebsd.org"


[Bug 234042] panics on 12.0-RELEASE: swi4: clock(0), instruction pointer 0x0

2019-01-13 Thread bugzilla-noreply
https://bugs.freebsd.org/bugzilla/show_bug.cgi?id=234042

--- Comment #13 from Mike Andrews  ---
https://www.bit0.com/download/vmcores.schnapps.tar.gz.gpg
https://www.bit0.com/download/vmcores.whiskey.tar.gz.gpg
https://www.bit0.com/download/vmcores.wine.tar.gz.gpg

emailed passphrase

-- 
You are receiving this mail because:
You are the assignee for the bug.
___
freebsd-bugs@freebsd.org mailing list
https://lists.freebsd.org/mailman/listinfo/freebsd-bugs
To unsubscribe, send any mail to "freebsd-bugs-unsubscr...@freebsd.org"


[Bug 204545] Adding quirk entry for some (Acer C720P Chromebook) firmware in keyboard module

2019-01-13 Thread bugzilla-noreply
https://bugs.freebsd.org/bugzilla/show_bug.cgi?id=204545

Oleksandr Tymoshenko  changed:

   What|Removed |Added

 Resolution|--- |Overcome By Events
 Status|New |Closed
 CC||go...@freebsd.org

--- Comment #7 from Oleksandr Tymoshenko  ---
Closing as OBE. The base r307468 marked all Chromebooks as the ones that
require keyboard workaround, so there is no need for individual models quirks.

-- 
You are receiving this mail because:
You are the assignee for the bug.
___
freebsd-bugs@freebsd.org mailing list
https://lists.freebsd.org/mailman/listinfo/freebsd-bugs
To unsubscribe, send any mail to "freebsd-bugs-unsubscr...@freebsd.org"


Problem reports for b...@freebsd.org that need special attention

2019-01-13 Thread bugzilla-noreply
To view an individual PR, use:
  https://bugs.freebsd.org/bugzilla/show_bug.cgi?id=(Bug Id).

The following is a listing of current problems submitted by FreeBSD users,
which need special attention. These represent problem reports covering
all versions including experimental development code and obsolete releases.

Status  |Bug Id | Description
+---+---
In Progress |210415 | vidcontrol -h  does not work with v 
In Progress |221973 | cam iosched: BIO_ZONE commands probably shouldn't 
In Progress |221974 | cam iosched: The iops limiter should enforce limi 
In Progress |232857 | [PATCH] freebsd-update: add a progress report for 
New |197876 | [devfs] an error in devfs leads to data loss and  
New |198797 | [PATCH] Added an option to install BSDstats to bs 
New |202362 | ntp: restore refclocks selection (10.2-RELEASE re 
New |202740 | vi/ex string substitution problem when there is m 
New |204097 | witness_initialize() does not perform bound check 
New |204115 | freebsd-update: Add support for better user messa 
New |204545 | Adding quirk entry for some (Acer C720P Chromeboo 
New |207940 | [patch] sys/boot/efi/boot1 select boot partition  
New |209213 | UEFI Loader shows only black screen with Nvidia G 
New |210804 | installerconfig - using ZFS create in custom scri 
New |212561 | stucking kyua test (/usr/tests/sys/acl/01) with e 
New |214705 | Kernel panic trying to playback encrypted DVD, "F 
New |221906 | sys/cddl: Allow to modify the ZFS deadman sysctls 
New |224436 | vt: CONS_CLRHIST (vidcontrol -C) not implemented  
New |231354 | Potential null pointer deference in drm/r128  
Open| 71667 | [patch] cleanup of the usr.sbin/bootparamd code   
Open|155873 | calendar(1) recurring date not working
Open|182466 | [headers] [patch] make  self-contained  
Open|183618 | [panic] Dell PowerEdge R620 -- PERC H710 Mini (mf 
Open|189914 | i2c(8) utility does not work on Raspberry Pi  
Open|194925 | [pf] [ifconfig] interface group keywords do not w 
Open|206528 | Emulex LPe 16002 FC HBA Not Recognized by oce(4)  
Open|206585 | hpt_set_info possible buffer overflow 
Open|206754 | Out of bounds negative array index in iicrdwr 
Open|207248 | [patch] daemon(8): Add option to redirect stdout  
Open|209468 | aacraid run_interrupt_driven_hooks: still waiting 
Open|211713 | NVME controller failure: resetting (Samsung SM961 
Open|212418 | kernel panic in _taskqgroup_adjust - uninitialize 
Open|220246 | syslogd does not send RFC3164-conformant messages 
Open|221305 | Mouse cursor loss when moving cursor while loadin 
Open|221854 | makefs: Reject UFS labels that are too long to fi 
Open|222632 | connect(2) not available in capability mode   
Open|231810 | [build] release always fails with "mkimg: partiti 
Open|233578 | Unprivileged local user can prevent other users l 
Open|233988 | [patch] freebsd-update: improve progress output o 
New |230725 | [patch] kerberos5 files missing in tools/build/mk 
New |230727 | [patch] NIS file missing in tools/build/mk/Option 
New |230955 | [patch] Some speedup mergemaster  
Open|191348 | [mps] LSI2308 with WD3000FYYZ drives disappears a 
Open|206754 | Out of bounds negative array index in iicrdwr 

44 problems total for which you should take action.
___
freebsd-bugs@freebsd.org mailing list
https://lists.freebsd.org/mailman/listinfo/freebsd-bugs
To unsubscribe, send any mail to "freebsd-bugs-unsubscr...@freebsd.org"


[Bug 200757] A typo in /usr/src/UPDATING

2019-01-13 Thread bugzilla-noreply
https://bugs.freebsd.org/bugzilla/show_bug.cgi?id=200757

Andriy Voskoboinyk  changed:

   What|Removed |Added

 Status|New |Closed
 Resolution|--- |FIXED
 CC||a...@freebsd.org

--- Comment #2 from Andriy Voskoboinyk  ---
Fixed in base r284230.

-- 
You are receiving this mail because:
You are the assignee for the bug.
___
freebsd-bugs@freebsd.org mailing list
https://lists.freebsd.org/mailman/listinfo/freebsd-bugs
To unsubscribe, send any mail to "freebsd-bugs-unsubscr...@freebsd.org"


[Bug 234042] panics on 12.0-RELEASE: swi4: clock(0), instruction pointer 0x0

2019-01-13 Thread bugzilla-noreply
https://bugs.freebsd.org/bugzilla/show_bug.cgi?id=234042

--- Comment #12 from Mike Andrews  ---
https://www.bit0.com/download/vmcores.champagne.tar.gz.gpg

-- 
You are receiving this mail because:
You are the assignee for the bug.
___
freebsd-bugs@freebsd.org mailing list
https://lists.freebsd.org/mailman/listinfo/freebsd-bugs
To unsubscribe, send any mail to "freebsd-bugs-unsubscr...@freebsd.org"


[Bug 228875] Synaptics gestures like two finger scroll and trackpoint do not work.

2019-01-13 Thread bugzilla-noreply
https://bugs.freebsd.org/bugzilla/show_bug.cgi?id=228875

Oleksandr Tymoshenko  changed:

   What|Removed |Added

 Status|New |Closed
 CC||go...@freebsd.org
 Resolution|--- |Works As Intended
   Assignee|b...@freebsd.org|go...@freebsd.org

--- Comment #6 from Oleksandr Tymoshenko  ---
The problem is not in the kernel it's in xf86-input-synaptics driver.

The trackpad sends all events to the driver as a Synaptics packets that are
supposed to contain all the information:number of presspoints, movements,
"button" states. The trackpoint/buttons events also reported the same way as
"guest device" events and can be detected by checking "finger width" field
value in a packet to be equal 3 (see sys/dev/atkbdc/psm.c line 3268 and below).
The xf86-input-synaptics switches /dev/psm0 "native" mode that disables all the
in-kernel processing of synaptics packet and makes kernel pass them to the
userland as-is for further handling. The problem is that xf86-input-synaptics
doesn't have code to handle guest device events and so the trackpoint and
physical buttons do not work.

I ended up using xf86-input-libinput on my Thinkpad for the gestures/synpatics
support. I think it requires some changes in kernel config and some X11 drivers
before it can be made default for the release.

Closing this issue as "works as intended" because it can't be fixed in FreeBSD
code. I am not sure if xf86-input-synaptics is actively maintained but I think
it's worth reporting the issue to the upstream.

-- 
You are receiving this mail because:
You are the assignee for the bug.
___
freebsd-bugs@freebsd.org mailing list
https://lists.freebsd.org/mailman/listinfo/freebsd-bugs
To unsubscribe, send any mail to "freebsd-bugs-unsubscr...@freebsd.org"


[Bug 234042] panics on 12.0-RELEASE: swi4: clock(0), instruction pointer 0x0

2019-01-13 Thread bugzilla-noreply
https://bugs.freebsd.org/bugzilla/show_bug.cgi?id=234042

--- Comment #11 from Mike Andrews  ---
https://www.bit0.com/download/vmcore.0.whitedog.2018-12-30 and
https://www.bit0.com/download/kernel.whitedog.2018-12-30 should cover that -- I
don't have anything in /usr/lib/debug at all but the kernel is a stock 12.0-p0
r341666 GENERIC one, not custom built from source...  so I imagine the
/usr/lib/debug from the release ISOs would do.

This isn't precisely the same panic as I initially described though.  It's just
the one that had the least proprietary info in it.  :)  Let me look at the
others and maybe I can put some of them up GPG'ed and send a passphrase
separately.

-- 
You are receiving this mail because:
You are the assignee for the bug.
___
freebsd-bugs@freebsd.org mailing list
https://lists.freebsd.org/mailman/listinfo/freebsd-bugs
To unsubscribe, send any mail to "freebsd-bugs-unsubscr...@freebsd.org"


[Bug 234793] Failed unknown for $USER in sshd logs even if I got authenticated

2019-01-13 Thread bugzilla-noreply
https://bugs.freebsd.org/bugzilla/show_bug.cgi?id=234793

--- Comment #3 from Egbert Pot  ---
Created attachment 201095
  --> https://bugs.freebsd.org/bugzilla/attachment.cgi?id=201095=edit
server--sshd_config

-- 
You are receiving this mail because:
You are the assignee for the bug.
___
freebsd-bugs@freebsd.org mailing list
https://lists.freebsd.org/mailman/listinfo/freebsd-bugs
To unsubscribe, send any mail to "freebsd-bugs-unsubscr...@freebsd.org"


[Bug 234793] Failed unknown for $USER in sshd logs even if I got authenticated

2019-01-13 Thread bugzilla-noreply
https://bugs.freebsd.org/bugzilla/show_bug.cgi?id=234793

--- Comment #2 from Egbert Pot  ---
Created attachment 201094
  --> https://bugs.freebsd.org/bugzilla/attachment.cgi?id=201094=edit
server--auth.log

-- 
You are receiving this mail because:
You are the assignee for the bug.
___
freebsd-bugs@freebsd.org mailing list
https://lists.freebsd.org/mailman/listinfo/freebsd-bugs
To unsubscribe, send any mail to "freebsd-bugs-unsubscr...@freebsd.org"


[Bug 234793] Failed unknown for $USER in sshd logs even if I got authenticated

2019-01-13 Thread bugzilla-noreply
https://bugs.freebsd.org/bugzilla/show_bug.cgi?id=234793

Egbert Pot  changed:

   What|Removed |Added

 CC||egbert@gmail.com
 Attachment #201093|text/markdown   |text/plain
  mime type||

--- Comment #1 from Egbert Pot  ---
Created attachment 201093
  --> https://bugs.freebsd.org/bugzilla/attachment.cgi?id=201093=edit
client-ssh-verbose.md

-- 
You are receiving this mail because:
You are the assignee for the bug.
___
freebsd-bugs@freebsd.org mailing list
https://lists.freebsd.org/mailman/listinfo/freebsd-bugs
To unsubscribe, send any mail to "freebsd-bugs-unsubscr...@freebsd.org"