]> andersk Git - moira.git/commitdiff
remove some unnecessary spaces in com_err strings. noted by jhawk in
authordanw <danw>
Wed, 28 Jul 1999 23:01:05 +0000 (23:01 +0000)
committerdanw <danw>
Wed, 28 Jul 1999 23:01:05 +0000 (23:01 +0000)
[16974] in bugs

clients/passwd/chpobox.c
clients/passwd/chsh.c

index 356ddc40854dcb39586fbce2c758b766e89408cb..08dcef220e455a2bf3cde23f1f5b81eef1fd36c9 100644 (file)
@@ -127,7 +127,7 @@ int main(int argc, char *argv[])
                  "Moira has no record of a previous POP box for %s\n", uname);
        }
       else if (status != 0)
-       com_err(whoami, status, " while setting pobox");
+       com_err(whoami, status, "while setting pobox");
     }
 
   /*
@@ -138,7 +138,7 @@ show:
   if (status == MR_NO_MATCH)
     printf("User %s has no pobox.\n", uname);
   else if (status != 0)
-    com_err(whoami, status, " while retrieving current mailbox");
+    com_err(whoami, status, "while retrieving current mailbox");
   mr_disconnect();
   exit(0);
 }
index a10bde303bd03cacb103861b00bc49e3c6ff017b..d5fed8a6bed566babf584c83b26ec918049c5982 100644 (file)
@@ -96,14 +96,14 @@ int chsh(char *uname)
   if ((status = mr_query("get_finger_by_login", q_argc, q_argv,
                         get_fmodtime, uname)))
     {
-      com_err(whoami, status, " while getting user information.");
+      com_err(whoami, status, "while getting user information.");
       exit(2);
     }
 
   if ((status = mr_query("get_user_account_by_login", q_argc, q_argv,
                         get_shell, uname)))
     {
-      com_err(whoami, status, " while getting user information.");
+      com_err(whoami, status, "while getting user information.");
       exit(2);
     }
 
@@ -130,7 +130,7 @@ int chsh(char *uname)
   q_argc = USH_END;
   if ((status = mr_query("update_user_shell", q_argc, q_argv, NULL, NULL)))
     {
-      com_err(whoami, status, " while changing shell.");
+      com_err(whoami, status, "while changing shell.");
       exit(2);
     }
 
This page took 0.044958 seconds and 5 git commands to generate.