summaryrefslogtreecommitdiff
path: root/tools/krb5-sync-backend
diff options
context:
space:
mode:
authorRuss Allbery <eagle@eyrie.org>2015-08-18 21:37:19 -0700
committerRuss Allbery <eagle@eyrie.org>2015-08-18 21:37:19 -0700
commitc3c9076ceefbcea8367ea1a60ccb043ce4f4b2ba (patch)
tree8438656c682b53a13ace037780fabd3eb818c1b5 /tools/krb5-sync-backend
parenta956cc648786a70c8ee8c6052b89cf95429b2c07 (diff)
parentc689b2e01e1eca4694e9d24e2e6397747708c220 (diff)
Merge tag 'upstream/3.1' into debian
Upstream version 3.1
Diffstat (limited to 'tools/krb5-sync-backend')
-rwxr-xr-xtools/krb5-sync-backend4
1 files changed, 2 insertions, 2 deletions
diff --git a/tools/krb5-sync-backend b/tools/krb5-sync-backend
index 9728e6d..3cc05c0 100755
--- a/tools/krb5-sync-backend
+++ b/tools/krb5-sync-backend
@@ -42,7 +42,7 @@ my @IGNORE = (
qr{ $IGNORE_PREFIX .* Authentication error \z }xms,
qr{ $IGNORE_PREFIX .* for [ ] service_locator \z }xms,
qr{ $IGNORE_PREFIX .* Operation [ ] not [ ] permitted \z }xms,
- qr{ $IGNORE_PREFIX .* user [ ] .* [ ] not [ ] found [ ] in [ ] \S+\z}xms,
+ qr{ $IGNORE_PREFIX .* user [ ] .* [ ] not [ ] found [ ] via [ ] \S+\z}xms,
);
##############################################################################
@@ -318,7 +318,7 @@ sub process {
for my $ignore (@IGNORE) {
next STDERR if $line =~ m{ $ignore }xms;
}
- print {*STDERR} $line
+ print {*STDERR} $line, "\n"
or warn "$0: cannot write to standard error: $!\n";
}
} else {