Author: ngie
Date: Fri Apr 22 08:11:26 2016
New Revision: 298464
URL: https://svnweb.freebsd.org/changeset/base/298464

Log:
  Use `sizeof(*uuser)` instead of `sizeof(struct usm_user)` for consistency with
  the rest of the users in the file
  
  No functional change
  
  MFC after: 3 days
  Sponsored by: EMC / Isilon Storage Division

Modified:
  head/contrib/bsnmp/snmpd/main.c

Modified: head/contrib/bsnmp/snmpd/main.c
==============================================================================
--- head/contrib/bsnmp/snmpd/main.c     Fri Apr 22 08:09:27 2016        
(r298463)
+++ head/contrib/bsnmp/snmpd/main.c     Fri Apr 22 08:11:26 2016        
(r298464)
@@ -2813,7 +2813,7 @@ usm_new_user(uint8_t *eid, uint32_t elen
        if ((uuser = (struct usm_user *)malloc(sizeof(*uuser))) == NULL)
                return (NULL);
 
-       memset(uuser, 0, sizeof(struct usm_user));
+       memset(uuser, 0, sizeof(*uuser));
        strlcpy(uuser->suser.sec_name, uname, SNMP_ADM_STR32_SIZ);
        memcpy(uuser->user_engine_id, eid, elen);
        uuser->user_engine_len = elen;
_______________________________________________
[email protected] mailing list
https://lists.freebsd.org/mailman/listinfo/svn-src-all
To unsubscribe, send any mail to "[email protected]"

Reply via email to