1
0
mirror of https://github.com/systemd/systemd synced 2026-04-18 04:55:04 +02:00

Compare commits

..

No commits in common. "f83da717d9cdc9d464fcc4abae5193b4b5db1f79" and "362c62296aa76815b40cac63bd370401a305c793" have entirely different histories.

4 changed files with 12 additions and 13 deletions

View File

@ -918,19 +918,19 @@ msgstr ""
#: src/core/dbus-unit.c:359
msgid "Authentication is required to start '$(unit)'."
msgstr "Autenticazione richiesta per avviare '$(unit)'."
msgstr "Autenticazione richiesta per avviare '${unit}'."
#: src/core/dbus-unit.c:360
msgid "Authentication is required to stop '$(unit)'."
msgstr "Autenticazione richiesta per fermare '$(unit)'."
msgstr "Autenticazione richiesta per fermare '${unit}'."
#: src/core/dbus-unit.c:361
msgid "Authentication is required to reload '$(unit)'."
msgstr "Autenticazione richiesta per ricaricare '$(unit)'."
msgstr "Autenticazione richiesta per ricaricare '${unit}'."
#: src/core/dbus-unit.c:362 src/core/dbus-unit.c:363
msgid "Authentication is required to restart '$(unit)'."
msgstr "Autenticazione richiesta per riavviare '$(unit)'."
msgstr "Autenticazione richiesta per riavviare '${unit}'."
#: src/core/dbus-unit.c:535
msgid ""
@ -938,16 +938,16 @@ msgid ""
"'$(unit)'."
msgstr ""
"Autenticazione richiesta per inviare un segnale UNIX ai processi di "
"'$(unit)'."
"'${unit}'."
#: src/core/dbus-unit.c:566
msgid "Authentication is required to reset the \"failed\" state of '$(unit)'."
msgstr ""
"Autenticazione richiesta per riconfigurare lo stato \"fallito\" di '$(unit)'."
"Autenticazione richiesta per riconfigurare lo stato \"fallito\" di '${unit}'."
#: src/core/dbus-unit.c:599
msgid "Authentication is required to set properties on '$(unit)'."
msgstr "Autenticazione richiesta per configurare le proprietà di '$(unit)'."
msgstr "Autenticazione richiesta per configurare le proprietà di '${unit}'."
#: src/core/dbus-unit.c:708
msgid ""
@ -955,7 +955,7 @@ msgid ""
"'$(unit)'."
msgstr ""
"Autenticazione richiesta per eliminare i file e le directory associate a "
"'$(unit)'."
"'${unit}'."
#: src/core/dbus-unit.c:757
msgid ""

View File

@ -2446,7 +2446,7 @@ static void config_load_all_entries(
reboot_into_firmware);
if (config->entry_count == 0)
return;
return
config_write_entries_to_variable(config);

View File

@ -192,7 +192,7 @@ static void managed_journal_file_set_offline_internal(ManagedJournalFile *f) {
log_debug_errno(r, "Failed to re-enable copy-on-write for %s: %m, rewriting file", f->file->path);
r = copy_file_atomic(FORMAT_PROC_FD_PATH(f->file->fd), f->file->path, f->file->mode, 0, FS_NOCOW_FL, COPY_REPLACE | COPY_FSYNC | COPY_HOLES);
r = copy_file_atomic(f->file->path, f->file->path, f->file->mode, 0, FS_NOCOW_FL, COPY_REPLACE | COPY_FSYNC | COPY_HOLES);
if (r < 0) {
log_debug_errno(r, "Failed to rewrite %s: %m", f->file->path);
continue;

View File

@ -7,10 +7,9 @@ sanitize_address_undefined = custom_target(
project_source_root,
'@OUTPUT@',
'fuzzers',
'-Dfuzz-tests=true -Db_lundef=false -Db_sanitize=address,undefined --optimization=@0@ @1@ -Dc_args=@2@ -Dcpp_args=@2@'.format(
'-Dfuzz-tests=true -Db_lundef=false -Db_sanitize=address,undefined --optimization=@0@ @1@'.format(
get_option('optimization'),
get_option('werror') ? '--werror' : '',
'-DFUZZING_BUILD_MODE_UNSAFE_FOR_PRODUCTION'
get_option('werror') ? '--werror' : ''
),
' '.join(cc.cmd_array()),
cxx_cmd])