Date: Sun, 4 Nov 2012 01:20:57 +0000 (UTC) From: Eitan Adler <eadler@FreeBSD.org> To: src-committers@freebsd.org, svn-src-all@freebsd.org, svn-src-stable@freebsd.org, svn-src-stable-8@freebsd.org Subject: svn commit: r242543 - in stable/8: lib/libc/net lib/libdwarf lib/libpam/modules/pam_krb5 sbin/ddb sbin/natd sys/dev/cxgb sys/dev/e1000 sys/dev/hpt27xx sys/dev/mps sys/dev/oce sys/dev/sound/pci/hda ... Message-ID: <201211040120.qA41KvQc084475@svn.freebsd.org>
next in thread | raw e-mail | index | archive | help
Author: eadler Date: Sun Nov 4 01:20:57 2012 New Revision: 242543 URL: http://svn.freebsd.org/changeset/base/242543 Log: MFC r241844: remove duplicate semicolons where possible. Approved by: cperciva (implicit) Modified: stable/8/lib/libc/net/ip6opt.c stable/8/lib/libdwarf/dwarf_init.c stable/8/lib/libpam/modules/pam_krb5/pam_krb5.c stable/8/sbin/ddb/ddb.c stable/8/sbin/natd/natd.c stable/8/sys/dev/cxgb/cxgb_main.c stable/8/sys/dev/e1000/if_lem.c stable/8/sys/dev/hpt27xx/os_bsd.c stable/8/sys/dev/mps/mps_sas.c stable/8/sys/dev/mps/mps_user.c stable/8/sys/dev/oce/oce_if.c stable/8/sys/dev/sound/pci/hda/hdaa.c stable/8/sys/kern/sched_ule.c stable/8/tools/regression/lib/libc/nss/test-gethostby.c stable/8/tools/regression/sockets/unix_cmsg/unix_cmsg.c stable/8/usr.sbin/diskinfo/diskinfo.c stable/8/usr.sbin/ppp/radius.c Directory Properties: stable/8/lib/libc/ (props changed) stable/8/lib/libdwarf/ (props changed) stable/8/lib/libpam/ (props changed) stable/8/sbin/ddb/ (props changed) stable/8/sbin/natd/ (props changed) stable/8/sys/ (props changed) stable/8/sys/arm/ (props changed) stable/8/sys/cam/ (props changed) stable/8/sys/dev/ (props changed) stable/8/sys/dev/ahci/ (props changed) stable/8/sys/dev/cxgb/ (props changed) stable/8/sys/dev/e1000/ (props changed) stable/8/sys/dev/hpt27xx/ (props changed) stable/8/sys/dev/mps/ (props changed) stable/8/sys/dev/oce/ (props changed) stable/8/sys/dev/sound/ (props changed) stable/8/sys/dev/sound/pci/ (props changed) stable/8/sys/dev/usb/ (props changed) stable/8/sys/fs/ (props changed) stable/8/sys/kern/ (props changed) stable/8/sys/mips/ (props changed) stable/8/tools/regression/lib/libc/ (props changed) stable/8/tools/regression/sockets/ (props changed) stable/8/usr.sbin/diskinfo/ (props changed) stable/8/usr.sbin/ppp/ (props changed) Modified: stable/8/lib/libc/net/ip6opt.c ============================================================================== --- stable/8/lib/libc/net/ip6opt.c Sun Nov 4 01:20:00 2012 (r242542) +++ stable/8/lib/libc/net/ip6opt.c Sun Nov 4 01:20:57 2012 (r242543) @@ -461,7 +461,7 @@ inet6_opt_append(void *extbuf, socklen_t int inet6_opt_finish(void *extbuf, socklen_t extlen, int offset) { - int updatelen = offset > 0 ? (1 + ((offset - 1) | 7)) : 0;; + int updatelen = offset > 0 ? (1 + ((offset - 1) | 7)) : 0; if (extbuf) { u_int8_t *padp; Modified: stable/8/lib/libdwarf/dwarf_init.c ============================================================================== --- stable/8/lib/libdwarf/dwarf_init.c Sun Nov 4 01:20:00 2012 (r242542) +++ stable/8/lib/libdwarf/dwarf_init.c Sun Nov 4 01:20:57 2012 (r242543) @@ -551,7 +551,7 @@ dwarf_init_info(Dwarf_Debug dbg, Dwarf_E Dwarf_Attribute at; Dwarf_Die die; uint64_t abnum; - uint64_t die_offset = offset;; + uint64_t die_offset = offset; abnum = dwarf_read_uleb128(&d, &offset); Modified: stable/8/lib/libpam/modules/pam_krb5/pam_krb5.c ============================================================================== --- stable/8/lib/libpam/modules/pam_krb5/pam_krb5.c Sun Nov 4 01:20:00 2012 (r242542) +++ stable/8/lib/libpam/modules/pam_krb5/pam_krb5.c Sun Nov 4 01:20:57 2012 (r242543) @@ -633,7 +633,7 @@ pam_sm_acct_mgmt(pam_handle_t *pamh, int if (krbret != 0) { PAM_LOG("Error krb5_cc_get_principal(): %s", krb5_get_err_text(pam_context, krbret)); - retval = PAM_PERM_DENIED;; + retval = PAM_PERM_DENIED; goto cleanup; } Modified: stable/8/sbin/ddb/ddb.c ============================================================================== --- stable/8/sbin/ddb/ddb.c Sun Nov 4 01:20:00 2012 (r242542) +++ stable/8/sbin/ddb/ddb.c Sun Nov 4 01:20:57 2012 (r242543) @@ -80,7 +80,7 @@ ddb_readfile(char *filename) argc++; spn = strcspn(argv[0], WHITESP); - argv[1] = argv[0] + spn + strspn(argv[0] + spn, WHITESP);; + argv[1] = argv[0] + spn + strspn(argv[0] + spn, WHITESP); argv[0][spn] = '\0'; if (*argv[1] != '\0') argc++; Modified: stable/8/sbin/natd/natd.c ============================================================================== --- stable/8/sbin/natd/natd.c Sun Nov 4 01:20:00 2012 (r242542) +++ stable/8/sbin/natd/natd.c Sun Nov 4 01:20:57 2012 (r242543) @@ -1509,7 +1509,7 @@ static void ParseOption (const char* opt break; case LogIpfwDenied: - logIpfwDenied = yesNoValue;; + logIpfwDenied = yesNoValue; break; case PidFile: Modified: stable/8/sys/dev/cxgb/cxgb_main.c ============================================================================== --- stable/8/sys/dev/cxgb/cxgb_main.c Sun Nov 4 01:20:00 2012 (r242542) +++ stable/8/sys/dev/cxgb/cxgb_main.c Sun Nov 4 01:20:57 2012 (r242543) @@ -3052,7 +3052,7 @@ cxgb_extension_ioctl(struct cdev *dev, u break; } case CHELSIO_SET_FILTER: { - struct ch_filter *f = (struct ch_filter *)data;; + struct ch_filter *f = (struct ch_filter *)data; struct filter_info *p; unsigned int nfilters = sc->params.mc5.nfilters; Modified: stable/8/sys/dev/e1000/if_lem.c ============================================================================== --- stable/8/sys/dev/e1000/if_lem.c Sun Nov 4 01:20:00 2012 (r242542) +++ stable/8/sys/dev/e1000/if_lem.c Sun Nov 4 01:20:57 2012 (r242543) @@ -3390,7 +3390,7 @@ lem_free_receive_structures(struct adapt static bool lem_rxeof(struct adapter *adapter, int count, int *done) { - struct ifnet *ifp = adapter->ifp;; + struct ifnet *ifp = adapter->ifp; struct mbuf *mp; u8 status = 0, accept_frame = 0, eop = 0; u16 len, desc_len, prev_len_adj; Modified: stable/8/sys/dev/hpt27xx/os_bsd.c ============================================================================== --- stable/8/sys/dev/hpt27xx/os_bsd.c Sun Nov 4 01:20:00 2012 (r242542) +++ stable/8/sys/dev/hpt27xx/os_bsd.c Sun Nov 4 01:20:57 2012 (r242543) @@ -133,7 +133,7 @@ HPT_U8 pcicfg_read_byte (HPT_U8 bus, HPT } HPT_U32 pcicfg_read_dword(HPT_U8 bus, HPT_U8 dev, HPT_U8 func, HPT_U8 reg) { - return (HPT_U32)pci_cfgregread(bus, dev, func, reg, 4);; + return (HPT_U32)pci_cfgregread(bus, dev, func, reg, 4); } void pcicfg_write_byte (HPT_U8 bus, HPT_U8 dev, HPT_U8 func, HPT_U8 reg, HPT_U8 v) { Modified: stable/8/sys/dev/mps/mps_sas.c ============================================================================== --- stable/8/sys/dev/mps/mps_sas.c Sun Nov 4 01:20:00 2012 (r242542) +++ stable/8/sys/dev/mps/mps_sas.c Sun Nov 4 01:20:57 2012 (r242543) @@ -2020,7 +2020,7 @@ mpssas_scsiio_complete(struct mps_softc if (cm->cm_flags & MPS_CM_FLAGS_DATAIN) dir = BUS_DMASYNC_POSTREAD; else if (cm->cm_flags & MPS_CM_FLAGS_DATAOUT) - dir = BUS_DMASYNC_POSTWRITE;; + dir = BUS_DMASYNC_POSTWRITE; bus_dmamap_sync(sc->buffer_dmat, cm->cm_dmamap, dir); bus_dmamap_unload(sc->buffer_dmat, cm->cm_dmamap); } Modified: stable/8/sys/dev/mps/mps_user.c ============================================================================== --- stable/8/sys/dev/mps/mps_user.c Sun Nov 4 01:20:00 2012 (r242542) +++ stable/8/sys/dev/mps/mps_user.c Sun Nov 4 01:20:57 2012 (r242543) @@ -1000,7 +1000,7 @@ mps_user_pass_thru(struct mps_softc *sc, if (cm->cm_flags & MPS_CM_FLAGS_DATAIN) dir = BUS_DMASYNC_POSTREAD; else if (cm->cm_flags & MPS_CM_FLAGS_DATAOUT) - dir = BUS_DMASYNC_POSTWRITE;; + dir = BUS_DMASYNC_POSTWRITE; bus_dmamap_sync(sc->buffer_dmat, cm->cm_dmamap, dir); bus_dmamap_unload(sc->buffer_dmat, cm->cm_dmamap); Modified: stable/8/sys/dev/oce/oce_if.c ============================================================================== --- stable/8/sys/dev/oce/oce_if.c Sun Nov 4 01:20:00 2012 (r242542) +++ stable/8/sys/dev/oce/oce_if.c Sun Nov 4 01:20:57 2012 (r242543) @@ -256,7 +256,7 @@ oce_attach(device_t dev) rc = oce_hw_start(sc); if (rc) - goto lro_free;; + goto lro_free; sc->vlan_attach = EVENTHANDLER_REGISTER(vlan_config, Modified: stable/8/sys/dev/sound/pci/hda/hdaa.c ============================================================================== --- stable/8/sys/dev/sound/pci/hda/hdaa.c Sun Nov 4 01:20:00 2012 (r242542) +++ stable/8/sys/dev/sound/pci/hda/hdaa.c Sun Nov 4 01:20:57 2012 (r242543) @@ -1148,7 +1148,7 @@ hdaa_widget_parse(struct hdaa_widget *w) w->wclass.pin.config = hda_command(dev, HDA_CMD_GET_CONFIGURATION_DEFAULT(0, w->nid)); w->wclass.pin.cap = hda_command(dev, - HDA_CMD_GET_PARAMETER(0, w->nid, HDA_PARAM_PIN_CAP));; + HDA_CMD_GET_PARAMETER(0, w->nid, HDA_PARAM_PIN_CAP)); w->wclass.pin.ctrl = hda_command(dev, HDA_CMD_GET_PIN_WIDGET_CTRL(0, nid)); if (HDA_PARAM_PIN_CAP_EAPD_CAP(w->wclass.pin.cap)) { Modified: stable/8/sys/kern/sched_ule.c ============================================================================== --- stable/8/sys/kern/sched_ule.c Sun Nov 4 01:20:00 2012 (r242542) +++ stable/8/sys/kern/sched_ule.c Sun Nov 4 01:20:57 2012 (r242543) @@ -200,7 +200,7 @@ static struct td_sched td_sched0; */ static int sched_interact = SCHED_INTERACT_THRESH; static int realstathz = 127; -static int tickincr = 8 << SCHED_TICK_SHIFT;; +static int tickincr = 8 << SCHED_TICK_SHIFT; static int sched_slice = 12; #ifdef PREEMPTION #ifdef FULL_PREEMPTION Modified: stable/8/tools/regression/lib/libc/nss/test-gethostby.c ============================================================================== --- stable/8/tools/regression/lib/libc/nss/test-gethostby.c Sun Nov 4 01:20:00 2012 (r242542) +++ stable/8/tools/regression/lib/libc/nss/test-gethostby.c Sun Nov 4 01:20:57 2012 (r242543) @@ -565,7 +565,7 @@ hostent_read_snapshot_addr(char *addr, u static int hostent_read_snapshot_func(struct hostent *ht, char *line) { - StringList *sl1, *sl2;; + StringList *sl1, *sl2; char *s, *ps, *ts; int i, rv; Modified: stable/8/tools/regression/sockets/unix_cmsg/unix_cmsg.c ============================================================================== --- stable/8/tools/regression/sockets/unix_cmsg/unix_cmsg.c Sun Nov 4 01:20:00 2012 (r242542) +++ stable/8/tools/regression/sockets/unix_cmsg/unix_cmsg.c Sun Nov 4 01:20:57 2012 (r242543) @@ -1513,7 +1513,7 @@ t_timestamp_server(int fd1) msg.msg_iov = iov; msg.msg_iovlen = 1; msg.msg_control = control_un.control; - msg.msg_controllen = sizeof control_un.control;; + msg.msg_controllen = sizeof control_un.control; msg.msg_flags = 0; if (recvmsg_timeout(fd2, &msg, sizeof buf) < 0) Modified: stable/8/usr.sbin/diskinfo/diskinfo.c ============================================================================== --- stable/8/usr.sbin/diskinfo/diskinfo.c Sun Nov 4 01:20:00 2012 (r242542) +++ stable/8/usr.sbin/diskinfo/diskinfo.c Sun Nov 4 01:20:57 2012 (r242543) @@ -332,7 +332,7 @@ speeddisk(int fd, off_t mediasize, u_int TR(bulk * 1024); printf("\tinside: "); - b0 = sectorcount - bulk * (1024*1024 / sectorsize) - 1;; + b0 = sectorcount - bulk * (1024*1024 / sectorsize) - 1; rdsect(fd, b0, sectorsize); T0(); for (i = 0; i < bulk; i++) { Modified: stable/8/usr.sbin/ppp/radius.c ============================================================================== --- stable/8/usr.sbin/ppp/radius.c Sun Nov 4 01:20:00 2012 (r242542) +++ stable/8/usr.sbin/ppp/radius.c Sun Nov 4 01:20:57 2012 (r242543) @@ -784,7 +784,7 @@ radius_Init(struct radius *r) r->mppe.recvkeylen = 0; r->mppe.sendkey = NULL; r->mppe.sendkeylen = 0; - *r->cfg.file = '\0';; + *r->cfg.file = '\0'; log_Printf(LogDEBUG, "Radius: radius_Init\n"); }
Want to link to this message? Use this URL: <https://mail-archive.FreeBSD.org/cgi/mid.cgi?201211040120.qA41KvQc084475>