mirror of
https://github.com/systemd/systemd.git
synced 2025-03-19 22:50:17 +03:00
efi-api: use string_replace_char()
This commit is contained in:
parent
9dbfcaf229
commit
2a86ed67ed
@ -546,11 +546,3 @@ bool efi_has_tpm2(void) {
|
||||
}
|
||||
|
||||
#endif
|
||||
|
||||
char *efi_tilt_backslashes(char *s) {
|
||||
for (char *p = s; *p; p++)
|
||||
if (*p == '\\')
|
||||
*p = '/';
|
||||
|
||||
return s;
|
||||
}
|
||||
|
@ -3,6 +3,7 @@
|
||||
|
||||
#include "efivars-fundamental.h"
|
||||
#include "efivars.h"
|
||||
#include "string-util.h"
|
||||
|
||||
/* Various calls for interfacing with EFI variables from the official UEFI specs. */
|
||||
|
||||
@ -65,4 +66,6 @@ static inline bool efi_has_tpm2(void) {
|
||||
|
||||
#endif
|
||||
|
||||
char *efi_tilt_backslashes(char *s);
|
||||
static inline char *efi_tilt_backslashes(char *s) {
|
||||
return string_replace_char(s, '\\', '/');
|
||||
}
|
||||
|
Loading…
x
Reference in New Issue
Block a user