]> git.ipfire.org Git - thirdparty/systemd.git/commit - .gitignore
device-nodes: move device node specific code to own file
authorDave Reisner <dreisner@archlinux.org>
Wed, 18 Sep 2013 16:12:04 +0000 (12:12 -0400)
committerDave Reisner <dreisner@archlinux.org>
Thu, 19 Sep 2013 15:50:34 +0000 (11:50 -0400)
commit8f6ce71fe79d897b67157d92869db87ee2042af6
tree30055a64faf4d6b3aeb0ba84979627a4a23c16b3
parent7991ac34ab08421415b907e42775c5539a4a5bbb
device-nodes: move device node specific code to own file

In the process, rename udev_encode_string which is poorly named for what
it does. It deals specifically with encoding names that udev creates and
has its own rules: utf8 is valid but some ascii is not (e.g. path
separators), and everything else is simply escaped. Rename it to
encode_devnode_name.
.gitignore
Makefile.am
src/libudev/libudev-util.c
src/shared/device-nodes.c [new file with mode: 0644]
src/shared/device-nodes.h [new file with mode: 0644]
src/shared/utf8.c
src/shared/utf8.h
src/shared/util.c
src/test/test-device-nodes.c [new file with mode: 0644]
src/test/test-utf8.c