net: cleanup unsigned to unsigned int
[linux-2.6-block.git] / net / rxrpc / rxkad.c
index 7635107726ce76b66be2e28877bec91f9286ae96..f226709ebd8f159b4fef700307728accb4d2bf66 100644 (file)
@@ -31,7 +31,7 @@
 #define REALM_SZ                       40      /* size of principal's auth domain */
 #define SNAME_SZ                       40      /* size of service name */
 
-unsigned rxrpc_debug;
+unsigned int rxrpc_debug;
 module_param_named(debug, rxrpc_debug, uint, S_IWUSR | S_IRUGO);
 MODULE_PARM_DESC(debug, "rxkad debugging mask");
 
@@ -207,7 +207,7 @@ static int rxkad_secure_packet_encrypt(const struct rxrpc_call *call,
        struct rxrpc_crypt iv;
        struct scatterlist sg[16];
        struct sk_buff *trailer;
-       unsigned len;
+       unsigned int len;
        u16 check;
        int nsg;
 
@@ -826,7 +826,7 @@ static int rxkad_decrypt_ticket(struct rxrpc_connection *conn,
        struct rxrpc_crypt iv, key;
        struct scatterlist sg[1];
        struct in_addr addr;
-       unsigned life;
+       unsigned int life;
        time_t issue, now;
        bool little_endian;
        int ret;