]> granicus.if.org Git - shadow/commitdiff
* libmisc/console.c: Use a less disturbing construct for splint.
authornekral-guest <nekral-guest@5a98b0ae-9ef6-0310-add3-de5d479b70d7>
Fri, 24 Apr 2009 23:03:14 +0000 (23:03 +0000)
committernekral-guest <nekral-guest@5a98b0ae-9ef6-0310-add3-de5d479b70d7>
Fri, 24 Apr 2009 23:03:14 +0000 (23:03 +0000)
ChangeLog
libmisc/console.c

index a157a26e30bf9c5b83671658a203685241320ab3..f840dab91e7085590fc5dcb1916ffbf2523949fd 100644 (file)
--- a/ChangeLog
+++ b/ChangeLog
@@ -1,3 +1,7 @@
+2009-04-25  Nicolas François  <nicolas.francois@centraliens.net>
+
+       * libmisc/console.c: Use a less disturbing construct for splint.
+
 2009-04-25  Nicolas François  <nicolas.francois@centraliens.net>
 
        * libmisc/limits.c: Parse the limits, umask, nice, maxlogin, file
index 23970d79b45826201fe329145b61f78f6765aba4..458aaf2e8031dc2a734d5b4f6826da7bae7bf50e 100644 (file)
@@ -68,8 +68,8 @@ static bool is_listed (const char *cfgin, const char *tty, bool def)
         */
 
        if (*cons != '/') {
-               cons = strcpy (buf, cons);
-               while ((s = strtok (cons, ":")) != NULL) {
+               strcpy (buf, cons);
+               while ((s = strtok (buf, ":")) != NULL) {
                        if (strcmp (s, tty) == 0) {
                                return true;
                        }