diff options
author | Scott Lovenberg <scott.lovenberg@gmail.com> | 2010-05-14 19:34:26 -0400 |
---|---|---|
committer | Jeff Layton <jlayton@samba.org> | 2010-05-14 15:35:35 -0400 |
commit | 3439ca0527f103ad79e840092d06a461a36e9d72 (patch) | |
tree | 05b7a64f5a23f25119b4c5a5f07dbe9d2a80d8d5 | |
parent | 268079992cf85bfb9954b6fd4abb3eebf911a9d3 (diff) | |
download | cifs-utils-3439ca0527f103ad79e840092d06a461a36e9d72.tar.gz cifs-utils-3439ca0527f103ad79e840092d06a461a36e9d72.tar.bz2 cifs-utils-3439ca0527f103ad79e840092d06a461a36e9d72.zip |
mount.cifs: cosmetic alignment patch
Align CRED_ macro values to keep style consistent with last patch.
Signed-off-by: Scott Lovenberg <scott.lovenberg@gmail.com>
-rw-r--r-- | mount.cifs.c | 6 |
1 files changed, 3 insertions, 3 deletions
diff --git a/mount.cifs.c b/mount.cifs.c index d4ca80a..326b94e 100644 --- a/mount.cifs.c +++ b/mount.cifs.c @@ -125,9 +125,9 @@ * Values for parsing a credentials file. */ #define CRED_UNPARSEABLE 0 -#define CRED_USER 1 -#define CRED_PASS 2 -#define CRED_DOM 4 +#define CRED_USER 1 +#define CRED_PASS 2 +#define CRED_DOM 4 /* * Values for parsing command line options. |