chiark / gitweb /
release 135
[elogind.git] / extras / ata_id / ata_id.c
index 43d9516a19774250978d6c07af39fcff5a5d5978..dae464a4dc8121cb323168f6338f8ef8fc47282f 100644 (file)
@@ -3,9 +3,18 @@
  *
  * Copyright (C) 2005-2008 Kay Sievers <kay.sievers@vrfy.org>
  *
- *     This program is free software; you can redistribute it and/or modify it
- *     under the terms of the GNU General Public License as published by the
- *     Free Software Foundation version 2 of the License.
+ * This program is free software: you can redistribute it and/or modify
+ * it under the terms of the GNU General Public License as published by
+ * the Free Software Foundation, either version 2 of the License, or
+ * (at your option) any later version.
+ *
+ * This program is distributed in the hope that it will be useful,
+ * but WITHOUT ANY WARRANTY; without even the implied warranty of
+ * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the
+ * GNU General Public License for more details.
+ *
+ * You should have received a copy of the GNU General Public License
+ * along with this program.  If not, see <http://www.gnu.org/licenses/>.
  */
 
 #ifndef _GNU_SOURCE
@@ -35,38 +44,6 @@ static void log_fn(struct udev *udev, int priority,
        vsyslog(priority, format, args);
 }
 
-static void set_str(char *to, const char *from, size_t count)
-{
-       size_t i, j, len;
-
-       /* strip trailing whitespace */
-       len = strnlen(from, count);
-       while (len && isspace(from[len-1]))
-               len--;
-
-       /* strip leading whitespace */
-       i = 0;
-       while (isspace(from[i]) && (i < len))
-               i++;
-
-       j = 0;
-       while (i < len) {
-               /* substitute multiple whitespace */
-               if (isspace(from[i])) {
-                       while (isspace(from[i]))
-                               i++;
-                       to[j++] = '_';
-               }
-               /* skip chars */
-               if (from[i] == '/') {
-                       i++;
-                       continue;
-               }
-               to[j++] = from[i++];
-       }
-       to[j] = '\0';
-}
-
 int main(int argc, char *argv[])
 {
        struct udev *udev;
@@ -79,8 +56,8 @@ int main(int argc, char *argv[])
        int fd;
        int rc = 0;
        static const struct option options[] = {
-               { "export", 0, NULL, 'x' },
-               { "help", 0, NULL, 'h' },
+               { "export", no_argument, NULL, 'x' },
+               { "help", no_argument, NULL, 'h' },
                {}
        };
 
@@ -137,9 +114,12 @@ int main(int argc, char *argv[])
                goto close;
        }
 
-       set_str(model, (char *) id.model, 40);
-       set_str(serial, (char *) id.serial_no, 20);
-       set_str(revision, (char *) id.fw_rev, 8);
+       udev_util_replace_whitespace((char *) id.model, model, 40);
+       udev_util_replace_chars(model, NULL);
+       udev_util_replace_whitespace((char *) id.serial_no, serial, 20);
+       udev_util_replace_chars(serial, NULL);
+       udev_util_replace_whitespace((char *) id.fw_rev, revision, 8);
+       udev_util_replace_chars(revision, NULL);
 
        if (export) {
                if ((id.config >> 8) & 0x80) {