]> granicus.if.org Git - shadow/commitdiff
* src/expiry.c: Remove dead code.
authornekral-guest <nekral-guest@5a98b0ae-9ef6-0310-add3-de5d479b70d7>
Fri, 22 Jul 2011 22:39:30 +0000 (22:39 +0000)
committernekral-guest <nekral-guest@5a98b0ae-9ef6-0310-add3-de5d479b70d7>
Fri, 22 Jul 2011 22:39:30 +0000 (22:39 +0000)
* src/expiry.c: Improve comments.

ChangeLog
src/expiry.c

index a73127e66c16ddccceae410e92376188603c6d68..7ddd0d718310c6875d3dc17129342591e958f84c 100644 (file)
--- a/ChangeLog
+++ b/ChangeLog
@@ -1,3 +1,8 @@
+2011-07-23  Nicolas François  <nicolas.francois@centraliens.net>
+
+       * src/expiry.c: Remove dead code.
+       * src/expiry.c: Improve comments.
+
 2011-07-23  Nicolas François  <nicolas.francois@centraliens.net>
 
        * src/grpck.c: Added comments.
index 6718727b542def4a5baa3e202c522a257ab5d090..04513f3ba29ed77d5143659cf53197e7533f9708 100644 (file)
@@ -2,7 +2,7 @@
  * Copyright (c) 1994       , Julianne Frances Haugh
  * Copyright (c) 1996 - 2000, Marek Michałkiewicz
  * Copyright (c) 2001 - 2006, Tomasz Kłoczko
- * Copyright (c) 2007 - 2008, Nicolas François
+ * Copyright (c) 2007 - 2011, Nicolas François
  * All rights reserved.
  *
  * Redistribution and use in source and binary forms, with or without
@@ -136,23 +136,13 @@ int main (int argc, char **argv)
        }
 
        /*
-        * If forcing password change, use expire() function.
+        * Otherwise, force a password change with the expire() function.
+        * It will force the change or give a message indicating what to
+        * do.
+        * It won't return unless the account is unexpired.
         */
-       if (strcmp (argv[1], "-f") == 0) {
+       expire (pwd, spwd);
 
-               /*
-                * Just call expire(). It will force the change or give a
-                * message indicating what to do. And it doesn't return at
-                * all unless the account is unexpired.
-                */
-               expire (pwd, spwd);
-               exit (0);
-       }
-
-       /*
-        * Can't get here ...
-        */
-       usage ();
-       exit (1);
+       exit (0);
 }